aspose_pdf_cloud 20.2.0 → 20.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/README.md +24 -13
 - data/docs/ApiInfo.md +10 -0
 - data/docs/Cell.md +3 -0
 - data/docs/CheckBoxField.md +1 -0
 - data/docs/ChoiceField.md +1 -0
 - data/docs/ComboBoxField.md +1 -0
 - data/docs/FormField.md +1 -0
 - data/docs/ImageCompressionVersion.md +12 -0
 - data/docs/ImageEncoding.md +13 -0
 - data/docs/ImageFragment.md +15 -0
 - data/docs/ListBoxField.md +1 -0
 - data/docs/OptimizeOptions.md +13 -7
 - data/docs/OutputFormat.md +11 -0
 - data/docs/Paragraph.md +2 -2
 - data/docs/PdfAType.md +3 -2
 - data/docs/PdfApi.md +170 -25
 - data/docs/RadioButtonField.md +1 -0
 - data/docs/RadioButtonOptionField.md +1 -0
 - data/docs/SignatureField.md +1 -0
 - data/docs/TextBoxField.md +1 -0
 - data/docs/TextState.md +2 -1
 - data/lib/aspose_pdf_cloud.rb +5 -0
 - data/lib/aspose_pdf_cloud/api/pdf_api.rb +478 -41
 - data/lib/aspose_pdf_cloud/api_client.rb +1 -1
 - data/lib/aspose_pdf_cloud/models/api_info.rb +209 -0
 - data/lib/aspose_pdf_cloud/models/cell.rb +36 -4
 - data/lib/aspose_pdf_cloud/models/check_box_field.rb +11 -1
 - data/lib/aspose_pdf_cloud/models/choice_field.rb +11 -1
 - data/lib/aspose_pdf_cloud/models/combo_box_field.rb +11 -1
 - data/lib/aspose_pdf_cloud/models/form_field.rb +11 -1
 - data/lib/aspose_pdf_cloud/models/image_compression_version.rb +45 -0
 - data/lib/aspose_pdf_cloud/models/image_encoding.rb +46 -0
 - data/lib/aspose_pdf_cloud/models/image_fragment.rb +283 -0
 - data/lib/aspose_pdf_cloud/models/list_box_field.rb +11 -1
 - data/lib/aspose_pdf_cloud/models/optimize_options.rb +60 -35
 - data/lib/aspose_pdf_cloud/models/output_format.rb +44 -0
 - data/lib/aspose_pdf_cloud/models/paragraph.rb +2 -2
 - data/lib/aspose_pdf_cloud/models/pdf_a_type.rb +1 -0
 - data/lib/aspose_pdf_cloud/models/radio_button_field.rb +11 -1
 - data/lib/aspose_pdf_cloud/models/radio_button_option_field.rb +11 -1
 - data/lib/aspose_pdf_cloud/models/signature_field.rb +11 -1
 - data/lib/aspose_pdf_cloud/models/text_box_field.rb +11 -1
 - data/lib/aspose_pdf_cloud/models/text_state.rb +15 -5
 - data/lib/aspose_pdf_cloud/version.rb +1 -1
 - data/test/pdf_tests.rb +140 -98
 - data/test_data/Righteous-Regular.ttf +0 -0
 - metadata +13 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 2dd5106417cbdff73d81f93aae9860b8f59c3a06761ce78edaba1db314067a10
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: c2ed4a16965659d81862f449f5a1da45e329048fa94c60a8ab0a7aea766c75c4
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: d34e9f60eec5b0cfe4cc0fc40d8a9e2527534220f1bab8671b2e851ff0e512ce7b2d5aa876be37ae233ea0c20ddceb204809c3c3f8d5f6c4bc401115a5ba8dc2
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: c2b916da6d2485f12d75422efb3a5acc761f7d6b8f055facb70d485f0f8aa5286f460b150236da03650f027bc7a4406169de0111a8827ac076423d1a8a61ee95
         
     | 
    
        data/README.md
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Aspose.PDF Cloud
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            - API version: 3.0
         
     | 
| 
       4 
     | 
    
         
            -
            - Package version: 20. 
     | 
| 
      
 4 
     | 
    
         
            +
            - Package version: 20.8.0
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            [Aspose.PDF Cloud](https://products.aspose.cloud/pdf) is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of Pdf documents in the cloud.
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
         @@ -24,15 +24,15 @@ gem build aspose_pdf_cloud.gemspec 
     | 
|
| 
       24 
24 
     | 
    
         
             
            Then either install the gem locally:
         
     | 
| 
       25 
25 
     | 
    
         | 
| 
       26 
26 
     | 
    
         
             
            ```shell
         
     | 
| 
       27 
     | 
    
         
            -
            gem install ./aspose_pdf_cloud-20. 
     | 
| 
      
 27 
     | 
    
         
            +
            gem install ./aspose_pdf_cloud-20.8.0.gem
         
     | 
| 
       28 
28 
     | 
    
         
             
            ```
         
     | 
| 
       29 
     | 
    
         
            -
            (for development, run `gem install --dev ./aspose_pdf_cloud-20. 
     | 
| 
      
 29 
     | 
    
         
            +
            (for development, run `gem install --dev ./aspose_pdf_cloud-20.8.0.gem` to install the development dependencies)
         
     | 
| 
       30 
30 
     | 
    
         | 
| 
       31 
31 
     | 
    
         
             
            or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
         
     | 
| 
       32 
32 
     | 
    
         | 
| 
       33 
33 
     | 
    
         
             
            Finally add this to the Gemfile:
         
     | 
| 
       34 
34 
     | 
    
         | 
| 
       35 
     | 
    
         
            -
                gem 'aspose_pdf_cloud', '~> 20. 
     | 
| 
      
 35 
     | 
    
         
            +
                gem 'aspose_pdf_cloud', '~> 20.8.0'
         
     | 
| 
       36 
36 
     | 
    
         | 
| 
       37 
37 
     | 
    
         
             
            ### Install from Git
         
     | 
| 
       38 
38 
     | 
    
         | 
| 
         @@ -116,6 +116,7 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       116 
116 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**delete_stamp**](docs/PdfApi.md#delete_stamp) | **DELETE** /pdf/\{name}/stamps/\{stampId} | Delete document stamp by ID
         
     | 
| 
       117 
117 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**delete_table**](docs/PdfApi.md#delete_table) | **DELETE** /pdf/\{name}/tables/\{tableId} | Delete document table by ID
         
     | 
| 
       118 
118 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**download_file**](docs/PdfApi.md#download_file) | **GET** /pdf/storage/file/\{path} | Download file
         
     | 
| 
      
 119 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**get_api_info**](docs/PdfApi.md#get_api_info) | **GET** /pdf/info | 
         
     | 
| 
       119 
120 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_bookmark**](docs/PdfApi.md#get_bookmark) | **GET** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Read document bookmark.
         
     | 
| 
       120 
121 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_bookmarks**](docs/PdfApi.md#get_bookmarks) | **GET** /pdf/\{name}/bookmarks/list/\{bookmarkPath} | Read document bookmarks node list.
         
     | 
| 
       121 
122 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_caret_annotation**](docs/PdfApi.md#get_caret_annotation) | **GET** /pdf/\{name}/annotations/caret/\{annotationId} | Read document page caret annotation by ID.
         
     | 
| 
         @@ -124,7 +125,7 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       124 
125 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_combo_box_field**](docs/PdfApi.md#get_combo_box_field) | **GET** /pdf/\{name}/fields/combobox/\{fieldName} | Read document combobox field by name.
         
     | 
| 
       125 
126 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_disc_usage**](docs/PdfApi.md#get_disc_usage) | **GET** /pdf/storage/disc | Get disc usage
         
     | 
| 
       126 
127 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_document**](docs/PdfApi.md#get_document) | **GET** /pdf/\{name} | Read common document info.
         
     | 
| 
       127 
     | 
    
         
            -
            *AsposePdfCloud::PdfApi* | [**get_document_annotations**](docs/PdfApi.md#get_document_annotations) | **GET** /pdf/\{name}/annotations | Read  
     | 
| 
      
 128 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**get_document_annotations**](docs/PdfApi.md#get_document_annotations) | **GET** /pdf/\{name}/annotations | Read document page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
         
     | 
| 
       128 
129 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_document_attachment_by_index**](docs/PdfApi.md#get_document_attachment_by_index) | **GET** /pdf/\{name}/attachments/\{attachmentIndex} | Read document attachment info by its index.
         
     | 
| 
       129 
130 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_document_attachments**](docs/PdfApi.md#get_document_attachments) | **GET** /pdf/\{name}/attachments | Read document attachments info.
         
     | 
| 
       130 
131 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_document_bookmarks**](docs/PdfApi.md#get_document_bookmarks) | **GET** /pdf/\{name}/bookmarks/tree | Read document bookmarks tree.
         
     | 
| 
         @@ -184,7 +185,7 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       184 
185 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_import_fields_from_xfdf_in_storage**](docs/PdfApi.md#get_import_fields_from_xfdf_in_storage) | **GET** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
         
     | 
| 
       185 
186 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_import_fields_from_xml_in_storage**](docs/PdfApi.md#get_import_fields_from_xml_in_storage) | **GET** /pdf/\{name}/import/xml | Import from XML file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       186 
187 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_ink_annotation**](docs/PdfApi.md#get_ink_annotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
         
     | 
| 
       187 
     | 
    
         
            -
            *AsposePdfCloud::PdfApi* | [**get_la_te_x_in_storage_to_pdf**](docs/PdfApi.md#get_la_te_x_in_storage_to_pdf) | **GET** /pdf/create/latex | Convert  
     | 
| 
      
 188 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**get_la_te_x_in_storage_to_pdf**](docs/PdfApi.md#get_la_te_x_in_storage_to_pdf) | **GET** /pdf/create/latex | Convert TeX file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       188 
189 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_line_annotation**](docs/PdfApi.md#get_line_annotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
         
     | 
| 
       189 
190 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_link_annotation**](docs/PdfApi.md#get_link_annotation) | **GET** /pdf/\{name}/links/\{linkId} | Read document link annotation by ID.
         
     | 
| 
       190 
191 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_list_box_field**](docs/PdfApi.md#get_list_box_field) | **GET** /pdf/\{name}/fields/listbox/\{fieldName} | Read document listbox field by name.
         
     | 
| 
         @@ -236,11 +237,12 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       236 
237 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_doc**](docs/PdfApi.md#get_pdf_in_storage_to_doc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content
         
     | 
| 
       237 
238 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_epub**](docs/PdfApi.md#get_pdf_in_storage_to_epub) | **GET** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and returns resulting file in response content
         
     | 
| 
       238 
239 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_html**](docs/PdfApi.md#get_pdf_in_storage_to_html) | **GET** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and returns resulting file in response content
         
     | 
| 
       239 
     | 
    
         
            -
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_la_te_x**](docs/PdfApi.md#get_pdf_in_storage_to_la_te_x) | **GET** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to  
     | 
| 
      
 240 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_la_te_x**](docs/PdfApi.md#get_pdf_in_storage_to_la_te_x) | **GET** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to TeX format and returns resulting file in response content
         
     | 
| 
       240 
241 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_mobi_xml**](docs/PdfApi.md#get_pdf_in_storage_to_mobi_xml) | **GET** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and returns resulting file in response content
         
     | 
| 
       241 
242 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_pdf_a**](docs/PdfApi.md#get_pdf_in_storage_to_pdf_a) | **GET** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and returns resulting file in response content
         
     | 
| 
       242 
243 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_pptx**](docs/PdfApi.md#get_pdf_in_storage_to_pptx) | **GET** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and returns resulting file in response content
         
     | 
| 
       243 
244 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_svg**](docs/PdfApi.md#get_pdf_in_storage_to_svg) | **GET** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and returns resulting file in response content
         
     | 
| 
      
 245 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_te_x**](docs/PdfApi.md#get_pdf_in_storage_to_te_x) | **GET** /pdf/\{name}/convert/tex | Converts PDF document (located on storage) to TeX format and returns resulting file in response content
         
     | 
| 
       244 
246 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_tiff**](docs/PdfApi.md#get_pdf_in_storage_to_tiff) | **GET** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and returns resulting file in response content
         
     | 
| 
       245 
247 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xls**](docs/PdfApi.md#get_pdf_in_storage_to_xls) | **GET** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and returns resulting file in response content
         
     | 
| 
       246 
248 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xlsx**](docs/PdfApi.md#get_pdf_in_storage_to_xlsx) | **GET** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and returns resulting file in response content
         
     | 
| 
         @@ -264,6 +266,7 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       264 
266 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_strike_out_annotation**](docs/PdfApi.md#get_strike_out_annotation) | **GET** /pdf/\{name}/annotations/strikeout/\{annotationId} | Read document page StrikeOut annotation by ID.
         
     | 
| 
       265 
267 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_svg_in_storage_to_pdf**](docs/PdfApi.md#get_svg_in_storage_to_pdf) | **GET** /pdf/create/svg | Convert SVG file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       266 
268 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_table**](docs/PdfApi.md#get_table) | **GET** /pdf/\{name}/tables/\{tableId} | Read document page table by ID.
         
     | 
| 
      
 269 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**get_te_x_in_storage_to_pdf**](docs/PdfApi.md#get_te_x_in_storage_to_pdf) | **GET** /pdf/create/tex | Convert TeX file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       267 
270 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_text**](docs/PdfApi.md#get_text) | **GET** /pdf/\{name}/text | Read document text.
         
     | 
| 
       268 
271 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_text_annotation**](docs/PdfApi.md#get_text_annotation) | **GET** /pdf/\{name}/annotations/text/\{annotationId} | Read document page text annotation by ID.
         
     | 
| 
       269 
272 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_text_box_field**](docs/PdfApi.md#get_text_box_field) | **GET** /pdf/\{name}/fields/textbox/\{fieldName} | Read document text box field by name.
         
     | 
| 
         @@ -271,7 +274,7 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       271 
274 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_verify_signature**](docs/PdfApi.md#get_verify_signature) | **GET** /pdf/\{name}/verifySignature | Verify signature document.
         
     | 
| 
       272 
275 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_web_in_storage_to_pdf**](docs/PdfApi.md#get_web_in_storage_to_pdf) | **GET** /pdf/create/web | Convert web page to PDF format and return resulting file in response. 
         
     | 
| 
       273 
276 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_words_per_page**](docs/PdfApi.md#get_words_per_page) | **GET** /pdf/\{name}/pages/wordCount | Get number of words per document page.
         
     | 
| 
       274 
     | 
    
         
            -
            *AsposePdfCloud::PdfApi* | [**get_xfa_pdf_in_storage_to_acro_form**](docs/PdfApi.md#get_xfa_pdf_in_storage_to_acro_form) | **GET** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which  
     | 
| 
      
 277 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**get_xfa_pdf_in_storage_to_acro_form**](docs/PdfApi.md#get_xfa_pdf_in_storage_to_acro_form) | **GET** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and returns resulting file response content
         
     | 
| 
       275 
278 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_xml_in_storage_to_pdf**](docs/PdfApi.md#get_xml_in_storage_to_pdf) | **GET** /pdf/create/xml | Convert XML file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       276 
279 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_xps_in_storage_to_pdf**](docs/PdfApi.md#get_xps_in_storage_to_pdf) | **GET** /pdf/create/xps | Convert XPS file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       277 
280 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**get_xsl_fo_in_storage_to_pdf**](docs/PdfApi.md#get_xsl_fo_in_storage_to_pdf) | **GET** /pdf/create/xslfo | Convert XslFo file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
         @@ -370,7 +373,7 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       370 
373 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_import_fields_from_xfdf_in_storage**](docs/PdfApi.md#put_import_fields_from_xfdf_in_storage) | **PUT** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
         
     | 
| 
       371 
374 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_import_fields_from_xml_in_storage**](docs/PdfApi.md#put_import_fields_from_xml_in_storage) | **PUT** /pdf/\{name}/import/xml | Update fields from XML file in storage.
         
     | 
| 
       372 
375 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_ink_annotation**](docs/PdfApi.md#put_ink_annotation) | **PUT** /pdf/\{name}/annotations/ink/\{annotationId} | Replace document ink annotation
         
     | 
| 
       373 
     | 
    
         
            -
            *AsposePdfCloud::PdfApi* | [**put_la_te_x_in_storage_to_pdf**](docs/PdfApi.md#put_la_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/latex | Convert  
     | 
| 
      
 376 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**put_la_te_x_in_storage_to_pdf**](docs/PdfApi.md#put_la_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/latex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
       374 
377 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_line_annotation**](docs/PdfApi.md#put_line_annotation) | **PUT** /pdf/\{name}/annotations/line/\{annotationId} | Replace document line annotation
         
     | 
| 
       375 
378 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_link_annotation**](docs/PdfApi.md#put_link_annotation) | **PUT** /pdf/\{name}/links/\{linkId} | Replace document page link annotations
         
     | 
| 
       376 
379 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_list_box_field**](docs/PdfApi.md#put_list_box_field) | **PUT** /pdf/\{name}/fields/listbox/\{fieldName} | Replace document listbox field
         
     | 
| 
         @@ -390,11 +393,12 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       390 
393 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_doc**](docs/PdfApi.md#put_pdf_in_request_to_doc) | **PUT** /pdf/convert/doc | Converts PDF document (in request content) to DOC format and uploads resulting file to storage.
         
     | 
| 
       391 
394 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_epub**](docs/PdfApi.md#put_pdf_in_request_to_epub) | **PUT** /pdf/convert/epub | Converts PDF document (in request content) to EPUB format and uploads resulting file to storage.
         
     | 
| 
       392 
395 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_html**](docs/PdfApi.md#put_pdf_in_request_to_html) | **PUT** /pdf/convert/html | Converts PDF document (in request content) to Html format and uploads resulting file to storage.
         
     | 
| 
       393 
     | 
    
         
            -
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_la_te_x**](docs/PdfApi.md#put_pdf_in_request_to_la_te_x) | **PUT** /pdf/convert/latex | Converts PDF document (in request content) to  
     | 
| 
      
 396 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_la_te_x**](docs/PdfApi.md#put_pdf_in_request_to_la_te_x) | **PUT** /pdf/convert/latex | Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
         
     | 
| 
       394 
397 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_mobi_xml**](docs/PdfApi.md#put_pdf_in_request_to_mobi_xml) | **PUT** /pdf/convert/mobixml | Converts PDF document (in request content) to MOBIXML format and uploads resulting file to storage.
         
     | 
| 
       395 
398 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_pdf_a**](docs/PdfApi.md#put_pdf_in_request_to_pdf_a) | **PUT** /pdf/convert/pdfa | Converts PDF document (in request content) to PdfA format and uploads resulting file to storage.
         
     | 
| 
       396 
399 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_pptx**](docs/PdfApi.md#put_pdf_in_request_to_pptx) | **PUT** /pdf/convert/pptx | Converts PDF document (in request content) to PPTX format and uploads resulting file to storage.
         
     | 
| 
       397 
400 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_svg**](docs/PdfApi.md#put_pdf_in_request_to_svg) | **PUT** /pdf/convert/svg | Converts PDF document (in request content) to SVG format and uploads resulting file to storage.
         
     | 
| 
      
 401 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_te_x**](docs/PdfApi.md#put_pdf_in_request_to_te_x) | **PUT** /pdf/convert/tex | Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
         
     | 
| 
       398 
402 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_tiff**](docs/PdfApi.md#put_pdf_in_request_to_tiff) | **PUT** /pdf/convert/tiff | Converts PDF document (in request content) to TIFF format and uploads resulting file to storage.
         
     | 
| 
       399 
403 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xls**](docs/PdfApi.md#put_pdf_in_request_to_xls) | **PUT** /pdf/convert/xls | Converts PDF document (in request content) to XLS format and uploads resulting file to storage.
         
     | 
| 
       400 
404 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xlsx**](docs/PdfApi.md#put_pdf_in_request_to_xlsx) | **PUT** /pdf/convert/xlsx | Converts PDF document (in request content) to XLSX format and uploads resulting file to storage.
         
     | 
| 
         @@ -403,11 +407,12 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       403 
407 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_doc**](docs/PdfApi.md#put_pdf_in_storage_to_doc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage
         
     | 
| 
       404 
408 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_epub**](docs/PdfApi.md#put_pdf_in_storage_to_epub) | **PUT** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and uploads resulting file to storage
         
     | 
| 
       405 
409 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_html**](docs/PdfApi.md#put_pdf_in_storage_to_html) | **PUT** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and uploads resulting file to storage
         
     | 
| 
       406 
     | 
    
         
            -
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_la_te_x**](docs/PdfApi.md#put_pdf_in_storage_to_la_te_x) | **PUT** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to  
     | 
| 
      
 410 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_la_te_x**](docs/PdfApi.md#put_pdf_in_storage_to_la_te_x) | **PUT** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
         
     | 
| 
       407 
411 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_mobi_xml**](docs/PdfApi.md#put_pdf_in_storage_to_mobi_xml) | **PUT** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and uploads resulting file to storage
         
     | 
| 
       408 
412 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_pdf_a**](docs/PdfApi.md#put_pdf_in_storage_to_pdf_a) | **PUT** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and uploads resulting file to storage
         
     | 
| 
       409 
413 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_pptx**](docs/PdfApi.md#put_pdf_in_storage_to_pptx) | **PUT** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and uploads resulting file to storage
         
     | 
| 
       410 
414 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_svg**](docs/PdfApi.md#put_pdf_in_storage_to_svg) | **PUT** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and uploads resulting file to storage
         
     | 
| 
      
 415 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_te_x**](docs/PdfApi.md#put_pdf_in_storage_to_te_x) | **PUT** /pdf/\{name}/convert/tex | Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
         
     | 
| 
       411 
416 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_tiff**](docs/PdfApi.md#put_pdf_in_storage_to_tiff) | **PUT** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and uploads resulting file to storage
         
     | 
| 
       412 
417 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xls**](docs/PdfApi.md#put_pdf_in_storage_to_xls) | **PUT** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and uploads resulting file to storage
         
     | 
| 
       413 
418 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xlsx**](docs/PdfApi.md#put_pdf_in_storage_to_xlsx) | **PUT** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and uploads resulting file to storage
         
     | 
| 
         @@ -435,14 +440,15 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       435 
440 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_strike_out_annotation**](docs/PdfApi.md#put_strike_out_annotation) | **PUT** /pdf/\{name}/annotations/strikeout/\{annotationId} | Replace document StrikeOut annotation
         
     | 
| 
       436 
441 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_svg_in_storage_to_pdf**](docs/PdfApi.md#put_svg_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/svg | Convert SVG file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
       437 
442 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_table**](docs/PdfApi.md#put_table) | **PUT** /pdf/\{name}/tables/\{tableId} | Replace document page table.
         
     | 
| 
      
 443 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**put_te_x_in_storage_to_pdf**](docs/PdfApi.md#put_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/tex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
       438 
444 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_text_annotation**](docs/PdfApi.md#put_text_annotation) | **PUT** /pdf/\{name}/annotations/text/\{annotationId} | Replace document text annotation
         
     | 
| 
       439 
445 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_text_box_field**](docs/PdfApi.md#put_text_box_field) | **PUT** /pdf/\{name}/fields/textbox/\{fieldName} | Replace document text box field
         
     | 
| 
       440 
446 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_underline_annotation**](docs/PdfApi.md#put_underline_annotation) | **PUT** /pdf/\{name}/annotations/underline/\{annotationId} | Replace document underline annotation
         
     | 
| 
       441 
447 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_update_field**](docs/PdfApi.md#put_update_field) | **PUT** /pdf/\{name}/fields/\{fieldName} | Update field.
         
     | 
| 
       442 
448 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_update_fields**](docs/PdfApi.md#put_update_fields) | **PUT** /pdf/\{name}/fields | Update fields.
         
     | 
| 
       443 
449 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_web_in_storage_to_pdf**](docs/PdfApi.md#put_web_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/web | Convert web page to PDF format and upload resulting file to storage. 
         
     | 
| 
       444 
     | 
    
         
            -
            *AsposePdfCloud::PdfApi* | [**put_xfa_pdf_in_request_to_acro_form**](docs/PdfApi.md#put_xfa_pdf_in_request_to_acro_form) | **PUT** /pdf/convert/xfatoacroform | Converts PDF document which  
     | 
| 
       445 
     | 
    
         
            -
            *AsposePdfCloud::PdfApi* | [**put_xfa_pdf_in_storage_to_acro_form**](docs/PdfApi.md#put_xfa_pdf_in_storage_to_acro_form) | **PUT** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which  
     | 
| 
      
 450 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**put_xfa_pdf_in_request_to_acro_form**](docs/PdfApi.md#put_xfa_pdf_in_request_to_acro_form) | **PUT** /pdf/convert/xfatoacroform | Converts PDF document which contains XFA form (in request content) to PDF with AcroForm and uploads resulting file to storage.
         
     | 
| 
      
 451 
     | 
    
         
            +
            *AsposePdfCloud::PdfApi* | [**put_xfa_pdf_in_storage_to_acro_form**](docs/PdfApi.md#put_xfa_pdf_in_storage_to_acro_form) | **PUT** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and uploads resulting file to storage
         
     | 
| 
       446 
452 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_xml_in_storage_to_pdf**](docs/PdfApi.md#put_xml_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xml | Convert XML file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
       447 
453 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_xps_in_storage_to_pdf**](docs/PdfApi.md#put_xps_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xps | Convert XPS file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
       448 
454 
     | 
    
         
             
            *AsposePdfCloud::PdfApi* | [**put_xsl_fo_in_storage_to_pdf**](docs/PdfApi.md#put_xsl_fo_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xslfo | Convert XslFo file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
         @@ -456,6 +462,7 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       456 
462 
     | 
    
         
             
             - [AsposePdfCloud::AnnotationState](docs/AnnotationState.md)
         
     | 
| 
       457 
463 
     | 
    
         
             
             - [AsposePdfCloud::AnnotationType](docs/AnnotationType.md)
         
     | 
| 
       458 
464 
     | 
    
         
             
             - [AsposePdfCloud::AntialiasingProcessingType](docs/AntialiasingProcessingType.md)
         
     | 
| 
      
 465 
     | 
    
         
            +
             - [AsposePdfCloud::ApiInfo](docs/ApiInfo.md)
         
     | 
| 
       459 
466 
     | 
    
         
             
             - [AsposePdfCloud::AsposeResponse](docs/AsposeResponse.md)
         
     | 
| 
       460 
467 
     | 
    
         
             
             - [AsposePdfCloud::Border](docs/Border.md)
         
     | 
| 
       461 
468 
     | 
    
         
             
             - [AsposePdfCloud::BorderCornerStyle](docs/BorderCornerStyle.md)
         
     | 
| 
         @@ -498,6 +505,9 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       498 
505 
     | 
    
         
             
             - [AsposePdfCloud::HorizontalAlignment](docs/HorizontalAlignment.md)
         
     | 
| 
       499 
506 
     | 
    
         
             
             - [AsposePdfCloud::HtmlDocumentType](docs/HtmlDocumentType.md)
         
     | 
| 
       500 
507 
     | 
    
         
             
             - [AsposePdfCloud::HtmlMarkupGenerationModes](docs/HtmlMarkupGenerationModes.md)
         
     | 
| 
      
 508 
     | 
    
         
            +
             - [AsposePdfCloud::ImageCompressionVersion](docs/ImageCompressionVersion.md)
         
     | 
| 
      
 509 
     | 
    
         
            +
             - [AsposePdfCloud::ImageEncoding](docs/ImageEncoding.md)
         
     | 
| 
      
 510 
     | 
    
         
            +
             - [AsposePdfCloud::ImageFragment](docs/ImageFragment.md)
         
     | 
| 
       501 
511 
     | 
    
         
             
             - [AsposePdfCloud::ImageSrcType](docs/ImageSrcType.md)
         
     | 
| 
       502 
512 
     | 
    
         
             
             - [AsposePdfCloud::ImageTemplate](docs/ImageTemplate.md)
         
     | 
| 
       503 
513 
     | 
    
         
             
             - [AsposePdfCloud::ImageTemplatesRequest](docs/ImageTemplatesRequest.md)
         
     | 
| 
         @@ -515,6 +525,7 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       515 
525 
     | 
    
         
             
             - [AsposePdfCloud::ObjectExist](docs/ObjectExist.md)
         
     | 
| 
       516 
526 
     | 
    
         
             
             - [AsposePdfCloud::OptimizeOptions](docs/OptimizeOptions.md)
         
     | 
| 
       517 
527 
     | 
    
         
             
             - [AsposePdfCloud::Option](docs/Option.md)
         
     | 
| 
      
 528 
     | 
    
         
            +
             - [AsposePdfCloud::OutputFormat](docs/OutputFormat.md)
         
     | 
| 
       518 
529 
     | 
    
         
             
             - [AsposePdfCloud::PageLayout](docs/PageLayout.md)
         
     | 
| 
       519 
530 
     | 
    
         
             
             - [AsposePdfCloud::PageMode](docs/PageMode.md)
         
     | 
| 
       520 
531 
     | 
    
         
             
             - [AsposePdfCloud::PageWordCount](docs/PageWordCount.md)
         
     | 
    
        data/docs/ApiInfo.md
    ADDED
    
    | 
         @@ -0,0 +1,10 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # AsposePdfCloud::ApiInfo
         
     | 
| 
      
 2 
     | 
    
         
            +
            Represents response for ApiInfo  DTO
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            ## Properties
         
     | 
| 
      
 5 
     | 
    
         
            +
            Name | Type | Description | Notes
         
     | 
| 
      
 6 
     | 
    
         
            +
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
      
 7 
     | 
    
         
            +
            **name** | **String** | Product name. | [optional] 
         
     | 
| 
      
 8 
     | 
    
         
            +
            **version** | **String** | API version. | [optional] 
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
    
        data/docs/Cell.md
    CHANGED
    
    | 
         @@ -9,6 +9,7 @@ Name | Type | Description | Notes 
     | 
|
| 
       9 
9 
     | 
    
         
             
            **border** | [**BorderInfo**](BorderInfo.md) | Gets or sets the border. | [optional] 
         
     | 
| 
       10 
10 
     | 
    
         
             
            **background_color** | [**Color**](Color.md) | Gets or sets the background color. | [optional] 
         
     | 
| 
       11 
11 
     | 
    
         
             
            **background_image_file** | **String** | Gets or sets the background image file. | [optional] 
         
     | 
| 
      
 12 
     | 
    
         
            +
            **background_image_storage_file** | **String** | Gets or sets path of the background image file from storage. | [optional] 
         
     | 
| 
       12 
13 
     | 
    
         
             
            **alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets the alignment. | [optional] 
         
     | 
| 
       13 
14 
     | 
    
         
             
            **default_cell_text_state** | [**TextState**](TextState.md) | Gets or sets the default cell text state. | [optional] 
         
     | 
| 
       14 
15 
     | 
    
         
             
            **paragraphs** | [**Array<TextRect>**](TextRect.md) | Gets or sets the cell's formatted text. | [optional] 
         
     | 
| 
         @@ -17,5 +18,7 @@ Name | Type | Description | Notes 
     | 
|
| 
       17 
18 
     | 
    
         
             
            **col_span** | **Integer** | Gets or sets the column span. | [optional] 
         
     | 
| 
       18 
19 
     | 
    
         
             
            **row_span** | **Integer** | Gets or sets the row span. | [optional] 
         
     | 
| 
       19 
20 
     | 
    
         
             
            **width** | **Float** | Gets or sets the column width. | [optional] 
         
     | 
| 
      
 21 
     | 
    
         
            +
            **html_fragment** | **String** | Gets or sets Html fragment. | [optional] 
         
     | 
| 
      
 22 
     | 
    
         
            +
            **images** | [**Array<ImageFragment>**](ImageFragment.md) | Gets or sets ImageFragment list. | [optional] 
         
     | 
| 
       20 
23 
     | 
    
         | 
| 
       21 
24 
     | 
    
         | 
    
        data/docs/CheckBoxField.md
    CHANGED
    
    | 
         @@ -6,6 +6,7 @@ Name | Type | Description | Notes 
     | 
|
| 
       6 
6 
     | 
    
         
             
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
       7 
7 
     | 
    
         
             
            **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional] 
         
     | 
| 
       8 
8 
     | 
    
         
             
            **partial_name** | **String** | Field name. | [optional] 
         
     | 
| 
      
 9 
     | 
    
         
            +
            **full_name** | **String** | Full Field name. | [optional] 
         
     | 
| 
       9 
10 
     | 
    
         
             
            **rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional] 
         
     | 
| 
       10 
11 
     | 
    
         
             
            **value** | **String** | Field value. | [optional] 
         
     | 
| 
       11 
12 
     | 
    
         
             
            **page_index** | **Integer** | Page index. | 
         
     | 
    
        data/docs/ChoiceField.md
    CHANGED
    
    | 
         @@ -6,6 +6,7 @@ Name | Type | Description | Notes 
     | 
|
| 
       6 
6 
     | 
    
         
             
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
       7 
7 
     | 
    
         
             
            **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional] 
         
     | 
| 
       8 
8 
     | 
    
         
             
            **partial_name** | **String** | Field name. | [optional] 
         
     | 
| 
      
 9 
     | 
    
         
            +
            **full_name** | **String** | Full Field name. | [optional] 
         
     | 
| 
       9 
10 
     | 
    
         
             
            **rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional] 
         
     | 
| 
       10 
11 
     | 
    
         
             
            **value** | **String** | Field value. | [optional] 
         
     | 
| 
       11 
12 
     | 
    
         
             
            **page_index** | **Integer** | Page index. | 
         
     | 
    
        data/docs/ComboBoxField.md
    CHANGED
    
    | 
         @@ -6,6 +6,7 @@ Name | Type | Description | Notes 
     | 
|
| 
       6 
6 
     | 
    
         
             
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
       7 
7 
     | 
    
         
             
            **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional] 
         
     | 
| 
       8 
8 
     | 
    
         
             
            **partial_name** | **String** | Field name. | [optional] 
         
     | 
| 
      
 9 
     | 
    
         
            +
            **full_name** | **String** | Full Field name. | [optional] 
         
     | 
| 
       9 
10 
     | 
    
         
             
            **rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional] 
         
     | 
| 
       10 
11 
     | 
    
         
             
            **value** | **String** | Field value. | [optional] 
         
     | 
| 
       11 
12 
     | 
    
         
             
            **page_index** | **Integer** | Page index. | 
         
     | 
    
        data/docs/FormField.md
    CHANGED
    
    | 
         @@ -6,6 +6,7 @@ Name | Type | Description | Notes 
     | 
|
| 
       6 
6 
     | 
    
         
             
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
       7 
7 
     | 
    
         
             
            **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional] 
         
     | 
| 
       8 
8 
     | 
    
         
             
            **partial_name** | **String** | Field name. | [optional] 
         
     | 
| 
      
 9 
     | 
    
         
            +
            **full_name** | **String** | Full Field name. | [optional] 
         
     | 
| 
       9 
10 
     | 
    
         
             
            **rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional] 
         
     | 
| 
       10 
11 
     | 
    
         
             
            **value** | **String** | Field value. | [optional] 
         
     | 
| 
       11 
12 
     | 
    
         
             
            **page_index** | **Integer** | Page index. | 
         
     | 
| 
         @@ -0,0 +1,12 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # AsposePdfCloud::ImageCompressionVersion
         
     | 
| 
      
 2 
     | 
    
         
            +
            Describes versions of image compression algorithm.
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            ## Enum
         
     | 
| 
      
 5 
     | 
    
         
            +
            Name | Type | Value | Description
         
     | 
| 
      
 6 
     | 
    
         
            +
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
      
 7 
     | 
    
         
            +
            **STANDARD** | **String** | 'Standard' | Standard algorithm. Default value.
         
     | 
| 
      
 8 
     | 
    
         
            +
            **FAST** | **String** | 'Fast' | Improved algorithm faster then standard but applicable not for all cases.
         
     | 
| 
      
 9 
     | 
    
         
            +
            **MIXED** | **String** | 'Mixed' | Use fast algorithm when possible and standard for other cases. May be slower then "Fast" but may produce better compression.
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
         @@ -0,0 +1,13 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # AsposePdfCloud::ImageEncoding
         
     | 
| 
      
 2 
     | 
    
         
            +
            Image encoding type.
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            ## Enum
         
     | 
| 
      
 5 
     | 
    
         
            +
            Name | Type | Value | Description
         
     | 
| 
      
 6 
     | 
    
         
            +
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
      
 7 
     | 
    
         
            +
            **UNCHANGED** | **String** | 'Unchanged' | Don't change encoding.
         
     | 
| 
      
 8 
     | 
    
         
            +
            **JPEG** | **String** | 'Jpeg' | JPEG (DCT) encoding.
         
     | 
| 
      
 9 
     | 
    
         
            +
            **FLATE** | **String** | 'Flate' | Flate encoding.
         
     | 
| 
      
 10 
     | 
    
         
            +
            **JPEG2000** | **String** | 'Jpeg2000' | JPEG2000 (JPX) encoding.
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
         @@ -0,0 +1,15 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # AsposePdfCloud::ImageFragment
         
     | 
| 
      
 2 
     | 
    
         
            +
            Represents Image Fragment DTO.
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            ## Properties
         
     | 
| 
      
 5 
     | 
    
         
            +
            Name | Type | Description | Notes
         
     | 
| 
      
 6 
     | 
    
         
            +
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
      
 7 
     | 
    
         
            +
            **image_file** | **String** | Gets or sets full storage path of image. | 
         
     | 
| 
      
 8 
     | 
    
         
            +
            **fix_width** | **Float** | Gets or sets fix width of the image. | [optional] 
         
     | 
| 
      
 9 
     | 
    
         
            +
            **fix_height** | **Float** | Gets or sets fix height of the image. | [optional] 
         
     | 
| 
      
 10 
     | 
    
         
            +
            **horizontal_alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets horizontal alignment of the image. | [optional] 
         
     | 
| 
      
 11 
     | 
    
         
            +
            **vertical_alignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of the image. | [optional] 
         
     | 
| 
      
 12 
     | 
    
         
            +
            **image_scale** | **Float** | Gets or sets ImageScale of the image. | [optional] 
         
     | 
| 
      
 13 
     | 
    
         
            +
            **margin** | [**MarginInfo**](MarginInfo.md) | Gets or sets Margin of the image. | [optional] 
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
    
        data/docs/ListBoxField.md
    CHANGED
    
    | 
         @@ -6,6 +6,7 @@ Name | Type | Description | Notes 
     | 
|
| 
       6 
6 
     | 
    
         
             
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
       7 
7 
     | 
    
         
             
            **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional] 
         
     | 
| 
       8 
8 
     | 
    
         
             
            **partial_name** | **String** | Field name. | [optional] 
         
     | 
| 
      
 9 
     | 
    
         
            +
            **full_name** | **String** | Full Field name. | [optional] 
         
     | 
| 
       9 
10 
     | 
    
         
             
            **rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional] 
         
     | 
| 
       10 
11 
     | 
    
         
             
            **value** | **String** | Field value. | [optional] 
         
     | 
| 
       11 
12 
     | 
    
         
             
            **page_index** | **Integer** | Page index. | 
         
     | 
    
        data/docs/OptimizeOptions.md
    CHANGED
    
    | 
         @@ -4,12 +4,18 @@ Represents Pdf optimize options. 
     | 
|
| 
       4 
4 
     | 
    
         
             
            ## Properties
         
     | 
| 
       5 
5 
     | 
    
         
             
            Name | Type | Description | Notes
         
     | 
| 
       6 
6 
     | 
    
         
             
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
       7 
     | 
    
         
            -
            **allow_reuse_page_content** | **BOOLEAN** | If true page contents will be reused when document is optimized for equal pages. | 
         
     | 
| 
       8 
     | 
    
         
            -
            **compress_images** | **BOOLEAN** | If this flag is set to true images will be compressed in the document.  
     | 
| 
       9 
     | 
    
         
            -
            **image_quality** | **Integer** |  
     | 
| 
       10 
     | 
    
         
            -
            **link_duplcate_streams** | **BOOLEAN** | If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then  
     | 
| 
       11 
     | 
    
         
            -
            **remove_unused_objects** | **BOOLEAN** | If this flag is set to true, all document objects will be checked and unused objects (i.e. objects which does not have any reference) are removed from document. | 
         
     | 
| 
       12 
     | 
    
         
            -
            **remove_unused_streams** | **BOOLEAN** | If this flag set to true, every resource is checked on it's usage. If resource is never used, then resources is removed. This may decrease document size for example when pages were extracted from document.  | 
         
     | 
| 
       13 
     | 
    
         
            -
            **unembed_fonts** | **BOOLEAN** | Make fonts not embedded if set to true.  | 
         
     | 
| 
      
 7 
     | 
    
         
            +
            **allow_reuse_page_content** | **BOOLEAN** | If true page contents will be reused when document is optimized for equal pages. | [optional] 
         
     | 
| 
      
 8 
     | 
    
         
            +
            **compress_images** | **BOOLEAN** | If this flag is set to true images will be compressed in the document. Compression level is specified with ImageQuality property. | [optional] 
         
     | 
| 
      
 9 
     | 
    
         
            +
            **image_quality** | **Integer** | Specifies level of image compression when CompressImages flag is used. | [optional] 
         
     | 
| 
      
 10 
     | 
    
         
            +
            **link_duplcate_streams** | **BOOLEAN** | If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thees streams will be stored as one object.  This allows to decrease document size in some cases (for example, when same document was concatenated multiple times). | [optional] 
         
     | 
| 
      
 11 
     | 
    
         
            +
            **remove_unused_objects** | **BOOLEAN** | If this flag is set to true, all document objects will be checked and unused objects (i.e. objects which does not have any reference) are removed from document. | [optional] 
         
     | 
| 
      
 12 
     | 
    
         
            +
            **remove_unused_streams** | **BOOLEAN** | If this flag set to true, every resource is checked on it's usage. If resource is never used, then resources is removed. This may decrease document size for example when pages were extracted from document.  | [optional] 
         
     | 
| 
      
 13 
     | 
    
         
            +
            **unembed_fonts** | **BOOLEAN** | Make fonts not embedded if set to true.  | [optional] 
         
     | 
| 
      
 14 
     | 
    
         
            +
            **resize_images** | **BOOLEAN** | If this flag set to true and CompressImages is true images will be resized if image resolution is greater then specified MaxResolution parameter. | [optional] 
         
     | 
| 
      
 15 
     | 
    
         
            +
            **max_resolution** | **Integer** | Specifies maximum resolution of images. If image has higher resolution it will be scaled. | [optional] 
         
     | 
| 
      
 16 
     | 
    
         
            +
            **subset_fonts** | **BOOLEAN** | Fonts will be converted into subsets if set to true. | [optional] 
         
     | 
| 
      
 17 
     | 
    
         
            +
            **remove_private_info** | **BOOLEAN** | Remove private information (page piece info). | [optional] 
         
     | 
| 
      
 18 
     | 
    
         
            +
            **image_encoding** | [**ImageEncoding**](ImageEncoding.md) | Image encode which will be used. | [optional] 
         
     | 
| 
      
 19 
     | 
    
         
            +
            **image_compression_version** | [**ImageCompressionVersion**](ImageCompressionVersion.md) | Version of compression algorithm. Possible values are: "Standard" - standard compression, "Fast" - fast (improved compression which is faster then standard but may be applicable not for all images), "Mixed" - mixed (standard compression is applied to images which can not be compressed by  faster algorithm, this may give best compression but more slow then "Fast" algorithm. Version "Fast" is not applicable for resizing images (standard method will be used). Default is "Standard". | [optional] 
         
     | 
| 
       14 
20 
     | 
    
         | 
| 
       15 
21 
     | 
    
         | 
| 
         @@ -0,0 +1,11 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # AsposePdfCloud::OutputFormat
         
     | 
| 
      
 2 
     | 
    
         
            +
            Enumeration for output type format.
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            ## Enum
         
     | 
| 
      
 5 
     | 
    
         
            +
            Name | Type | Value | Description
         
     | 
| 
      
 6 
     | 
    
         
            +
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
      
 7 
     | 
    
         
            +
            **ZIP** | **String** | 'Zip' | Zip archive.
         
     | 
| 
      
 8 
     | 
    
         
            +
            **FOLDER** | **String** | 'Folder' | Folder.
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
    
        data/docs/Paragraph.md
    CHANGED
    
    | 
         @@ -6,7 +6,7 @@ Name | Type | Description | Notes 
     | 
|
| 
       6 
6 
     | 
    
         
             
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
       7 
7 
     | 
    
         
             
            **line_spacing** | [**LineSpacing**](LineSpacing.md) | Line spacing mode. | [optional] 
         
     | 
| 
       8 
8 
     | 
    
         
             
            **wrap_mode** | [**WrapMode**](WrapMode.md) | Word wrap mode. | [optional] 
         
     | 
| 
       9 
     | 
    
         
            -
            **horizontal_alignment** | [**TextHorizontalAlignment**](TextHorizontalAlignment.md) | Horizontal alignment for the text inside  
     | 
| 
      
 9 
     | 
    
         
            +
            **horizontal_alignment** | [**TextHorizontalAlignment**](TextHorizontalAlignment.md) | Horizontal alignment for the text inside paragraph's rectangle. | [optional] 
         
     | 
| 
       10 
10 
     | 
    
         
             
            **left_margin** | **Float** | Left margin. | [optional] 
         
     | 
| 
       11 
11 
     | 
    
         
             
            **right_margin** | **Float** | Right margin. | [optional] 
         
     | 
| 
       12 
12 
     | 
    
         
             
            **top_margin** | **Float** | Top margin. | [optional] 
         
     | 
| 
         @@ -14,7 +14,7 @@ Name | Type | Description | Notes 
     | 
|
| 
       14 
14 
     | 
    
         
             
            **rectangle** | [**Rectangle**](Rectangle.md) | Rectangle of the paragraph. | [optional] 
         
     | 
| 
       15 
15 
     | 
    
         
             
            **rotation** | **Float** | Rotation angle in degrees. | [optional] 
         
     | 
| 
       16 
16 
     | 
    
         
             
            **subsequent_lines_indent** | **Float** | Subsequent lines indent value. | [optional] 
         
     | 
| 
       17 
     | 
    
         
            -
            **vertical_alignment** | [**VerticalAlignment**](VerticalAlignment.md) | Vertical alignment for the text inside  
     | 
| 
      
 17 
     | 
    
         
            +
            **vertical_alignment** | [**VerticalAlignment**](VerticalAlignment.md) | Vertical alignment for the text inside paragraph's rectangle | [optional] 
         
     | 
| 
       18 
18 
     | 
    
         
             
            **lines** | [**Array<TextLine>**](TextLine.md) | An array of text lines. | 
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
       20 
20 
     | 
    
         | 
    
        data/docs/PdfAType.md
    CHANGED
    
    | 
         @@ -4,8 +4,9 @@ Allows to specify PdfA file format. 
     | 
|
| 
       4 
4 
     | 
    
         
             
            ## Enum
         
     | 
| 
       5 
5 
     | 
    
         
             
            Name | Type | Value | Description
         
     | 
| 
       6 
6 
     | 
    
         
             
            ------------ | ------------- | ------------- | -------------
         
     | 
| 
       7 
     | 
    
         
            -
            **PDFA1_A** | **String** | 'PDFA1A' | 
         
     | 
| 
       8 
     | 
    
         
            -
            **PDFA1_B** | **String** | 'PDFA1B' | 
         
     | 
| 
      
 7 
     | 
    
         
            +
            **PDFA1_A** | **String** | 'PDFA1A' | Pdf/A-1a format
         
     | 
| 
      
 8 
     | 
    
         
            +
            **PDFA1_B** | **String** | 'PDFA1B' | Pdf/A-1b format
         
     | 
| 
      
 9 
     | 
    
         
            +
            **PDFA3_A** | **String** | 'PDFA3A' | Pdf/A-3a format
         
     | 
| 
       9 
10 
     | 
    
         | 
| 
       10 
11 
     | 
    
         | 
| 
       11 
12 
     | 
    
         | 
    
        data/docs/PdfApi.md
    CHANGED
    
    | 
         @@ -29,6 +29,7 @@ Method | HTTP request | Description 
     | 
|
| 
       29 
29 
     | 
    
         
             
            [**delete_stamp**](PdfApi.md#delete_stamp) | **DELETE** /pdf/\{name}/stamps/\{stampId} | Delete document stamp by ID
         
     | 
| 
       30 
30 
     | 
    
         
             
            [**delete_table**](PdfApi.md#delete_table) | **DELETE** /pdf/\{name}/tables/\{tableId} | Delete document table by ID
         
     | 
| 
       31 
31 
     | 
    
         
             
            [**download_file**](PdfApi.md#download_file) | **GET** /pdf/storage/file/\{path} | Download file
         
     | 
| 
      
 32 
     | 
    
         
            +
            [**get_api_info**](PdfApi.md#get_api_info) | **GET** /pdf/info | 
         
     | 
| 
       32 
33 
     | 
    
         
             
            [**get_bookmark**](PdfApi.md#get_bookmark) | **GET** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Read document bookmark.
         
     | 
| 
       33 
34 
     | 
    
         
             
            [**get_bookmarks**](PdfApi.md#get_bookmarks) | **GET** /pdf/\{name}/bookmarks/list/\{bookmarkPath} | Read document bookmarks node list.
         
     | 
| 
       34 
35 
     | 
    
         
             
            [**get_caret_annotation**](PdfApi.md#get_caret_annotation) | **GET** /pdf/\{name}/annotations/caret/\{annotationId} | Read document page caret annotation by ID.
         
     | 
| 
         @@ -37,7 +38,7 @@ Method | HTTP request | Description 
     | 
|
| 
       37 
38 
     | 
    
         
             
            [**get_combo_box_field**](PdfApi.md#get_combo_box_field) | **GET** /pdf/\{name}/fields/combobox/\{fieldName} | Read document combobox field by name.
         
     | 
| 
       38 
39 
     | 
    
         
             
            [**get_disc_usage**](PdfApi.md#get_disc_usage) | **GET** /pdf/storage/disc | Get disc usage
         
     | 
| 
       39 
40 
     | 
    
         
             
            [**get_document**](PdfApi.md#get_document) | **GET** /pdf/\{name} | Read common document info.
         
     | 
| 
       40 
     | 
    
         
            -
            [**get_document_annotations**](PdfApi.md#get_document_annotations) | **GET** /pdf/\{name}/annotations | Read  
     | 
| 
      
 41 
     | 
    
         
            +
            [**get_document_annotations**](PdfApi.md#get_document_annotations) | **GET** /pdf/\{name}/annotations | Read document page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
         
     | 
| 
       41 
42 
     | 
    
         
             
            [**get_document_attachment_by_index**](PdfApi.md#get_document_attachment_by_index) | **GET** /pdf/\{name}/attachments/\{attachmentIndex} | Read document attachment info by its index.
         
     | 
| 
       42 
43 
     | 
    
         
             
            [**get_document_attachments**](PdfApi.md#get_document_attachments) | **GET** /pdf/\{name}/attachments | Read document attachments info.
         
     | 
| 
       43 
44 
     | 
    
         
             
            [**get_document_bookmarks**](PdfApi.md#get_document_bookmarks) | **GET** /pdf/\{name}/bookmarks/tree | Read document bookmarks tree.
         
     | 
| 
         @@ -97,7 +98,7 @@ Method | HTTP request | Description 
     | 
|
| 
       97 
98 
     | 
    
         
             
            [**get_import_fields_from_xfdf_in_storage**](PdfApi.md#get_import_fields_from_xfdf_in_storage) | **GET** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
         
     | 
| 
       98 
99 
     | 
    
         
             
            [**get_import_fields_from_xml_in_storage**](PdfApi.md#get_import_fields_from_xml_in_storage) | **GET** /pdf/\{name}/import/xml | Import from XML file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       99 
100 
     | 
    
         
             
            [**get_ink_annotation**](PdfApi.md#get_ink_annotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
         
     | 
| 
       100 
     | 
    
         
            -
            [**get_la_te_x_in_storage_to_pdf**](PdfApi.md#get_la_te_x_in_storage_to_pdf) | **GET** /pdf/create/latex | Convert  
     | 
| 
      
 101 
     | 
    
         
            +
            [**get_la_te_x_in_storage_to_pdf**](PdfApi.md#get_la_te_x_in_storage_to_pdf) | **GET** /pdf/create/latex | Convert TeX file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       101 
102 
     | 
    
         
             
            [**get_line_annotation**](PdfApi.md#get_line_annotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
         
     | 
| 
       102 
103 
     | 
    
         
             
            [**get_link_annotation**](PdfApi.md#get_link_annotation) | **GET** /pdf/\{name}/links/\{linkId} | Read document link annotation by ID.
         
     | 
| 
       103 
104 
     | 
    
         
             
            [**get_list_box_field**](PdfApi.md#get_list_box_field) | **GET** /pdf/\{name}/fields/listbox/\{fieldName} | Read document listbox field by name.
         
     | 
| 
         @@ -149,11 +150,12 @@ Method | HTTP request | Description 
     | 
|
| 
       149 
150 
     | 
    
         
             
            [**get_pdf_in_storage_to_doc**](PdfApi.md#get_pdf_in_storage_to_doc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content
         
     | 
| 
       150 
151 
     | 
    
         
             
            [**get_pdf_in_storage_to_epub**](PdfApi.md#get_pdf_in_storage_to_epub) | **GET** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and returns resulting file in response content
         
     | 
| 
       151 
152 
     | 
    
         
             
            [**get_pdf_in_storage_to_html**](PdfApi.md#get_pdf_in_storage_to_html) | **GET** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and returns resulting file in response content
         
     | 
| 
       152 
     | 
    
         
            -
            [**get_pdf_in_storage_to_la_te_x**](PdfApi.md#get_pdf_in_storage_to_la_te_x) | **GET** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to  
     | 
| 
      
 153 
     | 
    
         
            +
            [**get_pdf_in_storage_to_la_te_x**](PdfApi.md#get_pdf_in_storage_to_la_te_x) | **GET** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to TeX format and returns resulting file in response content
         
     | 
| 
       153 
154 
     | 
    
         
             
            [**get_pdf_in_storage_to_mobi_xml**](PdfApi.md#get_pdf_in_storage_to_mobi_xml) | **GET** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and returns resulting file in response content
         
     | 
| 
       154 
155 
     | 
    
         
             
            [**get_pdf_in_storage_to_pdf_a**](PdfApi.md#get_pdf_in_storage_to_pdf_a) | **GET** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and returns resulting file in response content
         
     | 
| 
       155 
156 
     | 
    
         
             
            [**get_pdf_in_storage_to_pptx**](PdfApi.md#get_pdf_in_storage_to_pptx) | **GET** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and returns resulting file in response content
         
     | 
| 
       156 
157 
     | 
    
         
             
            [**get_pdf_in_storage_to_svg**](PdfApi.md#get_pdf_in_storage_to_svg) | **GET** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and returns resulting file in response content
         
     | 
| 
      
 158 
     | 
    
         
            +
            [**get_pdf_in_storage_to_te_x**](PdfApi.md#get_pdf_in_storage_to_te_x) | **GET** /pdf/\{name}/convert/tex | Converts PDF document (located on storage) to TeX format and returns resulting file in response content
         
     | 
| 
       157 
159 
     | 
    
         
             
            [**get_pdf_in_storage_to_tiff**](PdfApi.md#get_pdf_in_storage_to_tiff) | **GET** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and returns resulting file in response content
         
     | 
| 
       158 
160 
     | 
    
         
             
            [**get_pdf_in_storage_to_xls**](PdfApi.md#get_pdf_in_storage_to_xls) | **GET** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and returns resulting file in response content
         
     | 
| 
       159 
161 
     | 
    
         
             
            [**get_pdf_in_storage_to_xlsx**](PdfApi.md#get_pdf_in_storage_to_xlsx) | **GET** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and returns resulting file in response content
         
     | 
| 
         @@ -177,6 +179,7 @@ Method | HTTP request | Description 
     | 
|
| 
       177 
179 
     | 
    
         
             
            [**get_strike_out_annotation**](PdfApi.md#get_strike_out_annotation) | **GET** /pdf/\{name}/annotations/strikeout/\{annotationId} | Read document page StrikeOut annotation by ID.
         
     | 
| 
       178 
180 
     | 
    
         
             
            [**get_svg_in_storage_to_pdf**](PdfApi.md#get_svg_in_storage_to_pdf) | **GET** /pdf/create/svg | Convert SVG file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       179 
181 
     | 
    
         
             
            [**get_table**](PdfApi.md#get_table) | **GET** /pdf/\{name}/tables/\{tableId} | Read document page table by ID.
         
     | 
| 
      
 182 
     | 
    
         
            +
            [**get_te_x_in_storage_to_pdf**](PdfApi.md#get_te_x_in_storage_to_pdf) | **GET** /pdf/create/tex | Convert TeX file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       180 
183 
     | 
    
         
             
            [**get_text**](PdfApi.md#get_text) | **GET** /pdf/\{name}/text | Read document text.
         
     | 
| 
       181 
184 
     | 
    
         
             
            [**get_text_annotation**](PdfApi.md#get_text_annotation) | **GET** /pdf/\{name}/annotations/text/\{annotationId} | Read document page text annotation by ID.
         
     | 
| 
       182 
185 
     | 
    
         
             
            [**get_text_box_field**](PdfApi.md#get_text_box_field) | **GET** /pdf/\{name}/fields/textbox/\{fieldName} | Read document text box field by name.
         
     | 
| 
         @@ -184,7 +187,7 @@ Method | HTTP request | Description 
     | 
|
| 
       184 
187 
     | 
    
         
             
            [**get_verify_signature**](PdfApi.md#get_verify_signature) | **GET** /pdf/\{name}/verifySignature | Verify signature document.
         
     | 
| 
       185 
188 
     | 
    
         
             
            [**get_web_in_storage_to_pdf**](PdfApi.md#get_web_in_storage_to_pdf) | **GET** /pdf/create/web | Convert web page to PDF format and return resulting file in response. 
         
     | 
| 
       186 
189 
     | 
    
         
             
            [**get_words_per_page**](PdfApi.md#get_words_per_page) | **GET** /pdf/\{name}/pages/wordCount | Get number of words per document page.
         
     | 
| 
       187 
     | 
    
         
            -
            [**get_xfa_pdf_in_storage_to_acro_form**](PdfApi.md#get_xfa_pdf_in_storage_to_acro_form) | **GET** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which  
     | 
| 
      
 190 
     | 
    
         
            +
            [**get_xfa_pdf_in_storage_to_acro_form**](PdfApi.md#get_xfa_pdf_in_storage_to_acro_form) | **GET** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and returns resulting file response content
         
     | 
| 
       188 
191 
     | 
    
         
             
            [**get_xml_in_storage_to_pdf**](PdfApi.md#get_xml_in_storage_to_pdf) | **GET** /pdf/create/xml | Convert XML file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       189 
192 
     | 
    
         
             
            [**get_xps_in_storage_to_pdf**](PdfApi.md#get_xps_in_storage_to_pdf) | **GET** /pdf/create/xps | Convert XPS file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       190 
193 
     | 
    
         
             
            [**get_xsl_fo_in_storage_to_pdf**](PdfApi.md#get_xsl_fo_in_storage_to_pdf) | **GET** /pdf/create/xslfo | Convert XslFo file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
         @@ -283,7 +286,7 @@ Method | HTTP request | Description 
     | 
|
| 
       283 
286 
     | 
    
         
             
            [**put_import_fields_from_xfdf_in_storage**](PdfApi.md#put_import_fields_from_xfdf_in_storage) | **PUT** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
         
     | 
| 
       284 
287 
     | 
    
         
             
            [**put_import_fields_from_xml_in_storage**](PdfApi.md#put_import_fields_from_xml_in_storage) | **PUT** /pdf/\{name}/import/xml | Update fields from XML file in storage.
         
     | 
| 
       285 
288 
     | 
    
         
             
            [**put_ink_annotation**](PdfApi.md#put_ink_annotation) | **PUT** /pdf/\{name}/annotations/ink/\{annotationId} | Replace document ink annotation
         
     | 
| 
       286 
     | 
    
         
            -
            [**put_la_te_x_in_storage_to_pdf**](PdfApi.md#put_la_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/latex | Convert  
     | 
| 
      
 289 
     | 
    
         
            +
            [**put_la_te_x_in_storage_to_pdf**](PdfApi.md#put_la_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/latex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
       287 
290 
     | 
    
         
             
            [**put_line_annotation**](PdfApi.md#put_line_annotation) | **PUT** /pdf/\{name}/annotations/line/\{annotationId} | Replace document line annotation
         
     | 
| 
       288 
291 
     | 
    
         
             
            [**put_link_annotation**](PdfApi.md#put_link_annotation) | **PUT** /pdf/\{name}/links/\{linkId} | Replace document page link annotations
         
     | 
| 
       289 
292 
     | 
    
         
             
            [**put_list_box_field**](PdfApi.md#put_list_box_field) | **PUT** /pdf/\{name}/fields/listbox/\{fieldName} | Replace document listbox field
         
     | 
| 
         @@ -303,11 +306,12 @@ Method | HTTP request | Description 
     | 
|
| 
       303 
306 
     | 
    
         
             
            [**put_pdf_in_request_to_doc**](PdfApi.md#put_pdf_in_request_to_doc) | **PUT** /pdf/convert/doc | Converts PDF document (in request content) to DOC format and uploads resulting file to storage.
         
     | 
| 
       304 
307 
     | 
    
         
             
            [**put_pdf_in_request_to_epub**](PdfApi.md#put_pdf_in_request_to_epub) | **PUT** /pdf/convert/epub | Converts PDF document (in request content) to EPUB format and uploads resulting file to storage.
         
     | 
| 
       305 
308 
     | 
    
         
             
            [**put_pdf_in_request_to_html**](PdfApi.md#put_pdf_in_request_to_html) | **PUT** /pdf/convert/html | Converts PDF document (in request content) to Html format and uploads resulting file to storage.
         
     | 
| 
       306 
     | 
    
         
            -
            [**put_pdf_in_request_to_la_te_x**](PdfApi.md#put_pdf_in_request_to_la_te_x) | **PUT** /pdf/convert/latex | Converts PDF document (in request content) to  
     | 
| 
      
 309 
     | 
    
         
            +
            [**put_pdf_in_request_to_la_te_x**](PdfApi.md#put_pdf_in_request_to_la_te_x) | **PUT** /pdf/convert/latex | Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
         
     | 
| 
       307 
310 
     | 
    
         
             
            [**put_pdf_in_request_to_mobi_xml**](PdfApi.md#put_pdf_in_request_to_mobi_xml) | **PUT** /pdf/convert/mobixml | Converts PDF document (in request content) to MOBIXML format and uploads resulting file to storage.
         
     | 
| 
       308 
311 
     | 
    
         
             
            [**put_pdf_in_request_to_pdf_a**](PdfApi.md#put_pdf_in_request_to_pdf_a) | **PUT** /pdf/convert/pdfa | Converts PDF document (in request content) to PdfA format and uploads resulting file to storage.
         
     | 
| 
       309 
312 
     | 
    
         
             
            [**put_pdf_in_request_to_pptx**](PdfApi.md#put_pdf_in_request_to_pptx) | **PUT** /pdf/convert/pptx | Converts PDF document (in request content) to PPTX format and uploads resulting file to storage.
         
     | 
| 
       310 
313 
     | 
    
         
             
            [**put_pdf_in_request_to_svg**](PdfApi.md#put_pdf_in_request_to_svg) | **PUT** /pdf/convert/svg | Converts PDF document (in request content) to SVG format and uploads resulting file to storage.
         
     | 
| 
      
 314 
     | 
    
         
            +
            [**put_pdf_in_request_to_te_x**](PdfApi.md#put_pdf_in_request_to_te_x) | **PUT** /pdf/convert/tex | Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
         
     | 
| 
       311 
315 
     | 
    
         
             
            [**put_pdf_in_request_to_tiff**](PdfApi.md#put_pdf_in_request_to_tiff) | **PUT** /pdf/convert/tiff | Converts PDF document (in request content) to TIFF format and uploads resulting file to storage.
         
     | 
| 
       312 
316 
     | 
    
         
             
            [**put_pdf_in_request_to_xls**](PdfApi.md#put_pdf_in_request_to_xls) | **PUT** /pdf/convert/xls | Converts PDF document (in request content) to XLS format and uploads resulting file to storage.
         
     | 
| 
       313 
317 
     | 
    
         
             
            [**put_pdf_in_request_to_xlsx**](PdfApi.md#put_pdf_in_request_to_xlsx) | **PUT** /pdf/convert/xlsx | Converts PDF document (in request content) to XLSX format and uploads resulting file to storage.
         
     | 
| 
         @@ -316,11 +320,12 @@ Method | HTTP request | Description 
     | 
|
| 
       316 
320 
     | 
    
         
             
            [**put_pdf_in_storage_to_doc**](PdfApi.md#put_pdf_in_storage_to_doc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage
         
     | 
| 
       317 
321 
     | 
    
         
             
            [**put_pdf_in_storage_to_epub**](PdfApi.md#put_pdf_in_storage_to_epub) | **PUT** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and uploads resulting file to storage
         
     | 
| 
       318 
322 
     | 
    
         
             
            [**put_pdf_in_storage_to_html**](PdfApi.md#put_pdf_in_storage_to_html) | **PUT** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and uploads resulting file to storage
         
     | 
| 
       319 
     | 
    
         
            -
            [**put_pdf_in_storage_to_la_te_x**](PdfApi.md#put_pdf_in_storage_to_la_te_x) | **PUT** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to  
     | 
| 
      
 323 
     | 
    
         
            +
            [**put_pdf_in_storage_to_la_te_x**](PdfApi.md#put_pdf_in_storage_to_la_te_x) | **PUT** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
         
     | 
| 
       320 
324 
     | 
    
         
             
            [**put_pdf_in_storage_to_mobi_xml**](PdfApi.md#put_pdf_in_storage_to_mobi_xml) | **PUT** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and uploads resulting file to storage
         
     | 
| 
       321 
325 
     | 
    
         
             
            [**put_pdf_in_storage_to_pdf_a**](PdfApi.md#put_pdf_in_storage_to_pdf_a) | **PUT** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and uploads resulting file to storage
         
     | 
| 
       322 
326 
     | 
    
         
             
            [**put_pdf_in_storage_to_pptx**](PdfApi.md#put_pdf_in_storage_to_pptx) | **PUT** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and uploads resulting file to storage
         
     | 
| 
       323 
327 
     | 
    
         
             
            [**put_pdf_in_storage_to_svg**](PdfApi.md#put_pdf_in_storage_to_svg) | **PUT** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and uploads resulting file to storage
         
     | 
| 
      
 328 
     | 
    
         
            +
            [**put_pdf_in_storage_to_te_x**](PdfApi.md#put_pdf_in_storage_to_te_x) | **PUT** /pdf/\{name}/convert/tex | Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
         
     | 
| 
       324 
329 
     | 
    
         
             
            [**put_pdf_in_storage_to_tiff**](PdfApi.md#put_pdf_in_storage_to_tiff) | **PUT** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and uploads resulting file to storage
         
     | 
| 
       325 
330 
     | 
    
         
             
            [**put_pdf_in_storage_to_xls**](PdfApi.md#put_pdf_in_storage_to_xls) | **PUT** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and uploads resulting file to storage
         
     | 
| 
       326 
331 
     | 
    
         
             
            [**put_pdf_in_storage_to_xlsx**](PdfApi.md#put_pdf_in_storage_to_xlsx) | **PUT** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and uploads resulting file to storage
         
     | 
| 
         @@ -348,14 +353,15 @@ Method | HTTP request | Description 
     | 
|
| 
       348 
353 
     | 
    
         
             
            [**put_strike_out_annotation**](PdfApi.md#put_strike_out_annotation) | **PUT** /pdf/\{name}/annotations/strikeout/\{annotationId} | Replace document StrikeOut annotation
         
     | 
| 
       349 
354 
     | 
    
         
             
            [**put_svg_in_storage_to_pdf**](PdfApi.md#put_svg_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/svg | Convert SVG file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
       350 
355 
     | 
    
         
             
            [**put_table**](PdfApi.md#put_table) | **PUT** /pdf/\{name}/tables/\{tableId} | Replace document page table.
         
     | 
| 
      
 356 
     | 
    
         
            +
            [**put_te_x_in_storage_to_pdf**](PdfApi.md#put_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/tex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
       351 
357 
     | 
    
         
             
            [**put_text_annotation**](PdfApi.md#put_text_annotation) | **PUT** /pdf/\{name}/annotations/text/\{annotationId} | Replace document text annotation
         
     | 
| 
       352 
358 
     | 
    
         
             
            [**put_text_box_field**](PdfApi.md#put_text_box_field) | **PUT** /pdf/\{name}/fields/textbox/\{fieldName} | Replace document text box field
         
     | 
| 
       353 
359 
     | 
    
         
             
            [**put_underline_annotation**](PdfApi.md#put_underline_annotation) | **PUT** /pdf/\{name}/annotations/underline/\{annotationId} | Replace document underline annotation
         
     | 
| 
       354 
360 
     | 
    
         
             
            [**put_update_field**](PdfApi.md#put_update_field) | **PUT** /pdf/\{name}/fields/\{fieldName} | Update field.
         
     | 
| 
       355 
361 
     | 
    
         
             
            [**put_update_fields**](PdfApi.md#put_update_fields) | **PUT** /pdf/\{name}/fields | Update fields.
         
     | 
| 
       356 
362 
     | 
    
         
             
            [**put_web_in_storage_to_pdf**](PdfApi.md#put_web_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/web | Convert web page to PDF format and upload resulting file to storage. 
         
     | 
| 
       357 
     | 
    
         
            -
            [**put_xfa_pdf_in_request_to_acro_form**](PdfApi.md#put_xfa_pdf_in_request_to_acro_form) | **PUT** /pdf/convert/xfatoacroform | Converts PDF document which  
     | 
| 
       358 
     | 
    
         
            -
            [**put_xfa_pdf_in_storage_to_acro_form**](PdfApi.md#put_xfa_pdf_in_storage_to_acro_form) | **PUT** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which  
     | 
| 
      
 363 
     | 
    
         
            +
            [**put_xfa_pdf_in_request_to_acro_form**](PdfApi.md#put_xfa_pdf_in_request_to_acro_form) | **PUT** /pdf/convert/xfatoacroform | Converts PDF document which contains XFA form (in request content) to PDF with AcroForm and uploads resulting file to storage.
         
     | 
| 
      
 364 
     | 
    
         
            +
            [**put_xfa_pdf_in_storage_to_acro_form**](PdfApi.md#put_xfa_pdf_in_storage_to_acro_form) | **PUT** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and uploads resulting file to storage
         
     | 
| 
       359 
365 
     | 
    
         
             
            [**put_xml_in_storage_to_pdf**](PdfApi.md#put_xml_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xml | Convert XML file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
       360 
366 
     | 
    
         
             
            [**put_xps_in_storage_to_pdf**](PdfApi.md#put_xps_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xps | Convert XPS file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
       361 
367 
     | 
    
         
             
            [**put_xsl_fo_in_storage_to_pdf**](PdfApi.md#put_xsl_fo_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xslfo | Convert XslFo file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
         @@ -978,6 +984,25 @@ Name | Type | Description  | Notes 
     | 
|
| 
       978 
984 
     | 
    
         | 
| 
       979 
985 
     | 
    
         | 
| 
       980 
986 
     | 
    
         | 
| 
      
 987 
     | 
    
         
            +
            # **get_api_info**
         
     | 
| 
      
 988 
     | 
    
         
            +
            > ApiInfo get_api_info
         
     | 
| 
      
 989 
     | 
    
         
            +
             
     | 
| 
      
 990 
     | 
    
         
            +
             
     | 
| 
      
 991 
     | 
    
         
            +
             
     | 
| 
      
 992 
     | 
    
         
            +
            ### Parameters
         
     | 
| 
      
 993 
     | 
    
         
            +
            This endpoint does not need any parameter.
         
     | 
| 
      
 994 
     | 
    
         
            +
             
     | 
| 
      
 995 
     | 
    
         
            +
            ### Return type
         
     | 
| 
      
 996 
     | 
    
         
            +
             
     | 
| 
      
 997 
     | 
    
         
            +
            [**ApiInfo**](ApiInfo.md)
         
     | 
| 
      
 998 
     | 
    
         
            +
             
     | 
| 
      
 999 
     | 
    
         
            +
            ### HTTP request headers
         
     | 
| 
      
 1000 
     | 
    
         
            +
             
     | 
| 
      
 1001 
     | 
    
         
            +
             - **Content-Type**: application/json
         
     | 
| 
      
 1002 
     | 
    
         
            +
             - **Accept**: application/json
         
     | 
| 
      
 1003 
     | 
    
         
            +
             
     | 
| 
      
 1004 
     | 
    
         
            +
             
     | 
| 
      
 1005 
     | 
    
         
            +
             
     | 
| 
       981 
1006 
     | 
    
         
             
            # **get_bookmark**
         
     | 
| 
       982 
1007 
     | 
    
         
             
            > BookmarkResponse get_bookmark(name, bookmark_path, opts)
         
     | 
| 
       983 
1008 
     | 
    
         | 
| 
         @@ -1177,7 +1202,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       1177 
1202 
     | 
    
         
             
            # **get_document_annotations**
         
     | 
| 
       1178 
1203 
     | 
    
         
             
            > AnnotationsInfoResponse get_document_annotations(name, opts)
         
     | 
| 
       1179 
1204 
     | 
    
         | 
| 
       1180 
     | 
    
         
            -
            Read  
     | 
| 
      
 1205 
     | 
    
         
            +
            Read document page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
         
     | 
| 
       1181 
1206 
     | 
    
         | 
| 
       1182 
1207 
     | 
    
         
             
            ### Parameters
         
     | 
| 
       1183 
1208 
     | 
    
         | 
| 
         @@ -2648,7 +2673,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       2648 
2673 
     | 
    
         
             
            # **get_la_te_x_in_storage_to_pdf**
         
     | 
| 
       2649 
2674 
     | 
    
         
             
            > File get_la_te_x_in_storage_to_pdf(src_path, opts)
         
     | 
| 
       2650 
2675 
     | 
    
         | 
| 
       2651 
     | 
    
         
            -
            Convert  
     | 
| 
      
 2676 
     | 
    
         
            +
            Convert TeX file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
       2652 
2677 
     | 
    
         | 
| 
       2653 
2678 
     | 
    
         
             
            ### Parameters
         
     | 
| 
       2654 
2679 
     | 
    
         | 
| 
         @@ -3993,14 +4018,13 @@ Name | Type | Description  | Notes 
     | 
|
| 
       3993 
4018 
     | 
    
         
             
            # **get_pdf_in_storage_to_la_te_x**
         
     | 
| 
       3994 
4019 
     | 
    
         
             
            > File get_pdf_in_storage_to_la_te_x(name, opts)
         
     | 
| 
       3995 
4020 
     | 
    
         | 
| 
       3996 
     | 
    
         
            -
            Converts PDF document (located on storage) to  
     | 
| 
      
 4021 
     | 
    
         
            +
            Converts PDF document (located on storage) to TeX format and returns resulting file in response content
         
     | 
| 
       3997 
4022 
     | 
    
         | 
| 
       3998 
4023 
     | 
    
         
             
            ### Parameters
         
     | 
| 
       3999 
4024 
     | 
    
         | 
| 
       4000 
4025 
     | 
    
         
             
            Name | Type | Description  | Notes
         
     | 
| 
       4001 
4026 
     | 
    
         
             
            ------------- | ------------- | ------------- | -------------
         
     | 
| 
       4002 
4027 
     | 
    
         
             
             **name** | **String**| The document name. | 
         
     | 
| 
       4003 
     | 
    
         
            -
             **pages_count** | **Integer**| Pages count. | [optional] 
         
     | 
| 
       4004 
4028 
     | 
    
         
             
             **folder** | **String**| The document folder. | [optional] 
         
     | 
| 
       4005 
4029 
     | 
    
         
             
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
       4006 
4030 
     | 
    
         | 
| 
         @@ -4115,6 +4139,30 @@ Name | Type | Description  | Notes 
     | 
|
| 
       4115 
4139 
     | 
    
         | 
| 
       4116 
4140 
     | 
    
         | 
| 
       4117 
4141 
     | 
    
         | 
| 
      
 4142 
     | 
    
         
            +
            # **get_pdf_in_storage_to_te_x**
         
     | 
| 
      
 4143 
     | 
    
         
            +
            > File get_pdf_in_storage_to_te_x(name, opts)
         
     | 
| 
      
 4144 
     | 
    
         
            +
             
     | 
| 
      
 4145 
     | 
    
         
            +
            Converts PDF document (located on storage) to TeX format and returns resulting file in response content
         
     | 
| 
      
 4146 
     | 
    
         
            +
             
     | 
| 
      
 4147 
     | 
    
         
            +
            ### Parameters
         
     | 
| 
      
 4148 
     | 
    
         
            +
             
     | 
| 
      
 4149 
     | 
    
         
            +
            Name | Type | Description  | Notes
         
     | 
| 
      
 4150 
     | 
    
         
            +
            ------------- | ------------- | ------------- | -------------
         
     | 
| 
      
 4151 
     | 
    
         
            +
             **name** | **String**| The document name. | 
         
     | 
| 
      
 4152 
     | 
    
         
            +
             **folder** | **String**| The document folder. | [optional] 
         
     | 
| 
      
 4153 
     | 
    
         
            +
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
      
 4154 
     | 
    
         
            +
             
     | 
| 
      
 4155 
     | 
    
         
            +
            ### Return type
         
     | 
| 
      
 4156 
     | 
    
         
            +
             
     | 
| 
      
 4157 
     | 
    
         
            +
            **File**
         
     | 
| 
      
 4158 
     | 
    
         
            +
             
     | 
| 
      
 4159 
     | 
    
         
            +
            ### HTTP request headers
         
     | 
| 
      
 4160 
     | 
    
         
            +
             
     | 
| 
      
 4161 
     | 
    
         
            +
             - **Content-Type**: application/json
         
     | 
| 
      
 4162 
     | 
    
         
            +
             - **Accept**: multipart/form-data
         
     | 
| 
      
 4163 
     | 
    
         
            +
             
     | 
| 
      
 4164 
     | 
    
         
            +
             
     | 
| 
      
 4165 
     | 
    
         
            +
             
     | 
| 
       4118 
4166 
     | 
    
         
             
            # **get_pdf_in_storage_to_tiff**
         
     | 
| 
       4119 
4167 
     | 
    
         
             
            > File get_pdf_in_storage_to_tiff(name, opts)
         
     | 
| 
       4120 
4168 
     | 
    
         | 
| 
         @@ -4712,6 +4760,29 @@ Name | Type | Description  | Notes 
     | 
|
| 
       4712 
4760 
     | 
    
         | 
| 
       4713 
4761 
     | 
    
         | 
| 
       4714 
4762 
     | 
    
         | 
| 
      
 4763 
     | 
    
         
            +
            # **get_te_x_in_storage_to_pdf**
         
     | 
| 
      
 4764 
     | 
    
         
            +
            > File get_te_x_in_storage_to_pdf(src_path, opts)
         
     | 
| 
      
 4765 
     | 
    
         
            +
             
     | 
| 
      
 4766 
     | 
    
         
            +
            Convert TeX file (located on storage) to PDF format and return resulting file in response. 
         
     | 
| 
      
 4767 
     | 
    
         
            +
             
     | 
| 
      
 4768 
     | 
    
         
            +
            ### Parameters
         
     | 
| 
      
 4769 
     | 
    
         
            +
             
     | 
| 
      
 4770 
     | 
    
         
            +
            Name | Type | Description  | Notes
         
     | 
| 
      
 4771 
     | 
    
         
            +
            ------------- | ------------- | ------------- | -------------
         
     | 
| 
      
 4772 
     | 
    
         
            +
             **src_path** | **String**| Full source filename (ex. /folder1/folder2/template.tex) | 
         
     | 
| 
      
 4773 
     | 
    
         
            +
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
      
 4774 
     | 
    
         
            +
             
     | 
| 
      
 4775 
     | 
    
         
            +
            ### Return type
         
     | 
| 
      
 4776 
     | 
    
         
            +
             
     | 
| 
      
 4777 
     | 
    
         
            +
            **File**
         
     | 
| 
      
 4778 
     | 
    
         
            +
             
     | 
| 
      
 4779 
     | 
    
         
            +
            ### HTTP request headers
         
     | 
| 
      
 4780 
     | 
    
         
            +
             
     | 
| 
      
 4781 
     | 
    
         
            +
             - **Content-Type**: application/json
         
     | 
| 
      
 4782 
     | 
    
         
            +
             - **Accept**: multipart/form-data
         
     | 
| 
      
 4783 
     | 
    
         
            +
             
     | 
| 
      
 4784 
     | 
    
         
            +
             
     | 
| 
      
 4785 
     | 
    
         
            +
             
     | 
| 
       4715 
4786 
     | 
    
         
             
            # **get_text**
         
     | 
| 
       4716 
4787 
     | 
    
         
             
            > TextRectsResponse get_text(name, llx, lly, urx, ury, opts)
         
     | 
| 
       4717 
4788 
     | 
    
         | 
| 
         @@ -4900,7 +4971,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       4900 
4971 
     | 
    
         
             
            # **get_xfa_pdf_in_storage_to_acro_form**
         
     | 
| 
       4901 
4972 
     | 
    
         
             
            > File get_xfa_pdf_in_storage_to_acro_form(name, opts)
         
     | 
| 
       4902 
4973 
     | 
    
         | 
| 
       4903 
     | 
    
         
            -
            Converts PDF document which  
     | 
| 
      
 4974 
     | 
    
         
            +
            Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and returns resulting file response content
         
     | 
| 
       4904 
4975 
     | 
    
         | 
| 
       4905 
4976 
     | 
    
         
             
            ### Parameters
         
     | 
| 
       4906 
4977 
     | 
    
         | 
| 
         @@ -5916,7 +5987,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       5916 
5987 
     | 
    
         
             
            ------------- | ------------- | ------------- | -------------
         
     | 
| 
       5917 
5988 
     | 
    
         
             
             **name** | **String**| The document name. | 
         
     | 
| 
       5918 
5989 
     | 
    
         
             
             **page_number** | **Integer**| The page number. | 
         
     | 
| 
       5919 
     | 
    
         
            -
             **links** | [**Array<LinkAnnotation>**](LinkAnnotation.md)| Array of link  
     | 
| 
      
 5990 
     | 
    
         
            +
             **links** | [**Array<LinkAnnotation>**](LinkAnnotation.md)| Array of link annotation. | 
         
     | 
| 
       5920 
5991 
     | 
    
         
             
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
       5921 
5992 
     | 
    
         
             
             **folder** | **String**| The document folder. | [optional] 
         
     | 
| 
       5922 
5993 
     | 
    
         | 
| 
         @@ -6796,7 +6867,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       6796 
6867 
     | 
    
         
             
             **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.doc) | 
         
     | 
| 
       6797 
6868 
     | 
    
         
             
             **password** | **String**| The password (encrypted Base64). | 
         
     | 
| 
       6798 
6869 
     | 
    
         
             
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
       6799 
     | 
    
         
            -
             **file** | **File**| A file to be  
     | 
| 
      
 6870 
     | 
    
         
            +
             **file** | **File**| A file to be decrypted. | [optional] 
         
     | 
| 
       6800 
6871 
     | 
    
         | 
| 
       6801 
6872 
     | 
    
         
             
            ### Return type
         
     | 
| 
       6802 
6873 
     | 
    
         | 
| 
         @@ -7477,7 +7548,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       7477 
7548 
     | 
    
         
             
            # **put_la_te_x_in_storage_to_pdf**
         
     | 
| 
       7478 
7549 
     | 
    
         
             
            > AsposeResponse put_la_te_x_in_storage_to_pdf(name, src_path, opts)
         
     | 
| 
       7479 
7550 
     | 
    
         | 
| 
       7480 
     | 
    
         
            -
            Convert  
     | 
| 
      
 7551 
     | 
    
         
            +
            Convert TeX file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
       7481 
7552 
     | 
    
         | 
| 
       7482 
7553 
     | 
    
         
             
            ### Parameters
         
     | 
| 
       7483 
7554 
     | 
    
         | 
| 
         @@ -7536,7 +7607,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       7536 
7607 
     | 
    
         
             
            ------------- | ------------- | ------------- | -------------
         
     | 
| 
       7537 
7608 
     | 
    
         
             
             **name** | **String**| The document name. | 
         
     | 
| 
       7538 
7609 
     | 
    
         
             
             **link_id** | **String**| The link ID. | 
         
     | 
| 
       7539 
     | 
    
         
            -
             **link** | [**LinkAnnotation**](LinkAnnotation.md)| Link  
     | 
| 
      
 7610 
     | 
    
         
            +
             **link** | [**LinkAnnotation**](LinkAnnotation.md)| Link annotation. | 
         
     | 
| 
       7540 
7611 
     | 
    
         
             
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
       7541 
7612 
     | 
    
         
             
             **folder** | **String**| The document folder. | [optional] 
         
     | 
| 
       7542 
7613 
     | 
    
         | 
| 
         @@ -7611,7 +7682,7 @@ Merge a list of documents. 
     | 
|
| 
       7611 
7682 
     | 
    
         | 
| 
       7612 
7683 
     | 
    
         
             
            Name | Type | Description  | Notes
         
     | 
| 
       7613 
7684 
     | 
    
         
             
            ------------- | ------------- | ------------- | -------------
         
     | 
| 
       7614 
     | 
    
         
            -
             **name** | **String**| Resulting  
     | 
| 
      
 7685 
     | 
    
         
            +
             **name** | **String**| Resulting document name. | 
         
     | 
| 
       7615 
7686 
     | 
    
         
             
             **merge_documents** | [**MergeDocuments**](MergeDocuments.md)| MergeDocuments with a list of documents. | 
         
     | 
| 
       7616 
7687 
     | 
    
         
             
             **storage** | **String**| Resulting document storage. | [optional] 
         
     | 
| 
       7617 
7688 
     | 
    
         
             
             **folder** | **String**| Resulting document folder. | [optional] 
         
     | 
| 
         @@ -8020,6 +8091,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       8020 
8091 
     | 
    
         
             
             **try_save_text_underlining_and_strikeouting_in_css** | **BOOLEAN**| PDF itself does not contain underlining markers for texts. It emulated with line situated under text. This option allows converter try guess that this or that line is a text's underlining and put this info into CSS instead of drawing of underlining graphically. | [optional] 
         
     | 
| 
       8021 
8092 
     | 
    
         
             
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
       8022 
8093 
     | 
    
         
             
             **flow_layout_paragraph_full_width** | **BOOLEAN**| This attribute specifies full width paragraph text for Flow mode, FixedLayout = false. | [optional] 
         
     | 
| 
      
 8094 
     | 
    
         
            +
             **output_format** | **String**| This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is "Zip" or missed (default). In case of the "Folder", all resulting files and directories will be uploaded to the folder of the resulting HTML file. | [optional] [default to Zip]
         
     | 
| 
       8023 
8095 
     | 
    
         
             
             **file** | **File**| A file to be converted. | [optional] 
         
     | 
| 
       8024 
8096 
     | 
    
         | 
| 
       8025 
8097 
     | 
    
         
             
            ### Return type
         
     | 
| 
         @@ -8036,14 +8108,13 @@ Name | Type | Description  | Notes 
     | 
|
| 
       8036 
8108 
     | 
    
         
             
            # **put_pdf_in_request_to_la_te_x**
         
     | 
| 
       8037 
8109 
     | 
    
         
             
            > AsposeResponse put_pdf_in_request_to_la_te_x(out_path, opts)
         
     | 
| 
       8038 
8110 
     | 
    
         | 
| 
       8039 
     | 
    
         
            -
            Converts PDF document (in request content) to  
     | 
| 
      
 8111 
     | 
    
         
            +
            Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
         
     | 
| 
       8040 
8112 
     | 
    
         | 
| 
       8041 
8113 
     | 
    
         
             
            ### Parameters
         
     | 
| 
       8042 
8114 
     | 
    
         | 
| 
       8043 
8115 
     | 
    
         
             
            Name | Type | Description  | Notes
         
     | 
| 
       8044 
8116 
     | 
    
         
             
            ------------- | ------------- | ------------- | -------------
         
     | 
| 
       8045 
8117 
     | 
    
         
             
             **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) | 
         
     | 
| 
       8046 
     | 
    
         
            -
             **pages_count** | **Integer**| Pages count. | [optional] 
         
     | 
| 
       8047 
8118 
     | 
    
         
             
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
       8048 
8119 
     | 
    
         
             
             **file** | **File**| A file to be converted. | [optional] 
         
     | 
| 
       8049 
8120 
     | 
    
         | 
| 
         @@ -8157,6 +8228,30 @@ Name | Type | Description  | Notes 
     | 
|
| 
       8157 
8228 
     | 
    
         | 
| 
       8158 
8229 
     | 
    
         | 
| 
       8159 
8230 
     | 
    
         | 
| 
      
 8231 
     | 
    
         
            +
            # **put_pdf_in_request_to_te_x**
         
     | 
| 
      
 8232 
     | 
    
         
            +
            > AsposeResponse put_pdf_in_request_to_te_x(out_path, opts)
         
     | 
| 
      
 8233 
     | 
    
         
            +
             
     | 
| 
      
 8234 
     | 
    
         
            +
            Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
         
     | 
| 
      
 8235 
     | 
    
         
            +
             
     | 
| 
      
 8236 
     | 
    
         
            +
            ### Parameters
         
     | 
| 
      
 8237 
     | 
    
         
            +
             
     | 
| 
      
 8238 
     | 
    
         
            +
            Name | Type | Description  | Notes
         
     | 
| 
      
 8239 
     | 
    
         
            +
            ------------- | ------------- | ------------- | -------------
         
     | 
| 
      
 8240 
     | 
    
         
            +
             **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) | 
         
     | 
| 
      
 8241 
     | 
    
         
            +
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
      
 8242 
     | 
    
         
            +
             **file** | **File**| A file to be converted. | [optional] 
         
     | 
| 
      
 8243 
     | 
    
         
            +
             
     | 
| 
      
 8244 
     | 
    
         
            +
            ### Return type
         
     | 
| 
      
 8245 
     | 
    
         
            +
             
     | 
| 
      
 8246 
     | 
    
         
            +
            [**AsposeResponse**](AsposeResponse.md)
         
     | 
| 
      
 8247 
     | 
    
         
            +
             
     | 
| 
      
 8248 
     | 
    
         
            +
            ### HTTP request headers
         
     | 
| 
      
 8249 
     | 
    
         
            +
             
     | 
| 
      
 8250 
     | 
    
         
            +
             - **Content-Type**: multipart/form-data
         
     | 
| 
      
 8251 
     | 
    
         
            +
             - **Accept**: application/json
         
     | 
| 
      
 8252 
     | 
    
         
            +
             
     | 
| 
      
 8253 
     | 
    
         
            +
             
     | 
| 
      
 8254 
     | 
    
         
            +
             
     | 
| 
       8160 
8255 
     | 
    
         
             
            # **put_pdf_in_request_to_tiff**
         
     | 
| 
       8161 
8256 
     | 
    
         
             
            > AsposeResponse put_pdf_in_request_to_tiff(out_path, opts)
         
     | 
| 
       8162 
8257 
     | 
    
         | 
| 
         @@ -8401,6 +8496,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       8401 
8496 
     | 
    
         
             
             **folder** | **String**| The document folder. | [optional] 
         
     | 
| 
       8402 
8497 
     | 
    
         
             
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
       8403 
8498 
     | 
    
         
             
             **flow_layout_paragraph_full_width** | **BOOLEAN**| This attribute specifies full width paragraph text for Flow mode, FixedLayout = false. | [optional] 
         
     | 
| 
      
 8499 
     | 
    
         
            +
             **output_format** | **String**| This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is "Zip" or missed (default). In case of the "Folder", all resulting files and directories will be uploaded to the folder of the resulting HTML file. | [optional] [default to Zip]
         
     | 
| 
       8404 
8500 
     | 
    
         | 
| 
       8405 
8501 
     | 
    
         
             
            ### Return type
         
     | 
| 
       8406 
8502 
     | 
    
         | 
| 
         @@ -8416,7 +8512,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       8416 
8512 
     | 
    
         
             
            # **put_pdf_in_storage_to_la_te_x**
         
     | 
| 
       8417 
8513 
     | 
    
         
             
            > AsposeResponse put_pdf_in_storage_to_la_te_x(name, out_path, opts)
         
     | 
| 
       8418 
8514 
     | 
    
         | 
| 
       8419 
     | 
    
         
            -
            Converts PDF document (located on storage) to  
     | 
| 
      
 8515 
     | 
    
         
            +
            Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
         
     | 
| 
       8420 
8516 
     | 
    
         | 
| 
       8421 
8517 
     | 
    
         
             
            ### Parameters
         
     | 
| 
       8422 
8518 
     | 
    
         | 
| 
         @@ -8424,7 +8520,6 @@ Name | Type | Description  | Notes 
     | 
|
| 
       8424 
8520 
     | 
    
         
             
            ------------- | ------------- | ------------- | -------------
         
     | 
| 
       8425 
8521 
     | 
    
         
             
             **name** | **String**| The document name. | 
         
     | 
| 
       8426 
8522 
     | 
    
         
             
             **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) | 
         
     | 
| 
       8427 
     | 
    
         
            -
             **pages_count** | **Integer**| Pages count. | [optional] 
         
     | 
| 
       8428 
8523 
     | 
    
         
             
             **folder** | **String**| The document folder. | [optional] 
         
     | 
| 
       8429 
8524 
     | 
    
         
             
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
       8430 
8525 
     | 
    
         | 
| 
         @@ -8542,6 +8637,31 @@ Name | Type | Description  | Notes 
     | 
|
| 
       8542 
8637 
     | 
    
         | 
| 
       8543 
8638 
     | 
    
         | 
| 
       8544 
8639 
     | 
    
         | 
| 
      
 8640 
     | 
    
         
            +
            # **put_pdf_in_storage_to_te_x**
         
     | 
| 
      
 8641 
     | 
    
         
            +
            > AsposeResponse put_pdf_in_storage_to_te_x(name, out_path, opts)
         
     | 
| 
      
 8642 
     | 
    
         
            +
             
     | 
| 
      
 8643 
     | 
    
         
            +
            Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
         
     | 
| 
      
 8644 
     | 
    
         
            +
             
     | 
| 
      
 8645 
     | 
    
         
            +
            ### Parameters
         
     | 
| 
      
 8646 
     | 
    
         
            +
             
     | 
| 
      
 8647 
     | 
    
         
            +
            Name | Type | Description  | Notes
         
     | 
| 
      
 8648 
     | 
    
         
            +
            ------------- | ------------- | ------------- | -------------
         
     | 
| 
      
 8649 
     | 
    
         
            +
             **name** | **String**| The document name. | 
         
     | 
| 
      
 8650 
     | 
    
         
            +
             **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) | 
         
     | 
| 
      
 8651 
     | 
    
         
            +
             **folder** | **String**| The document folder. | [optional] 
         
     | 
| 
      
 8652 
     | 
    
         
            +
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
      
 8653 
     | 
    
         
            +
             
     | 
| 
      
 8654 
     | 
    
         
            +
            ### Return type
         
     | 
| 
      
 8655 
     | 
    
         
            +
             
     | 
| 
      
 8656 
     | 
    
         
            +
            [**AsposeResponse**](AsposeResponse.md)
         
     | 
| 
      
 8657 
     | 
    
         
            +
             
     | 
| 
      
 8658 
     | 
    
         
            +
            ### HTTP request headers
         
     | 
| 
      
 8659 
     | 
    
         
            +
             
     | 
| 
      
 8660 
     | 
    
         
            +
             - **Content-Type**: application/json
         
     | 
| 
      
 8661 
     | 
    
         
            +
             - **Accept**: application/json
         
     | 
| 
      
 8662 
     | 
    
         
            +
             
     | 
| 
      
 8663 
     | 
    
         
            +
             
     | 
| 
      
 8664 
     | 
    
         
            +
             
     | 
| 
       8545 
8665 
     | 
    
         
             
            # **put_pdf_in_storage_to_tiff**
         
     | 
| 
       8546 
8666 
     | 
    
         
             
            > AsposeResponse put_pdf_in_storage_to_tiff(name, out_path, opts)
         
     | 
| 
       8547 
8667 
     | 
    
         | 
| 
         @@ -9267,6 +9387,31 @@ Name | Type | Description  | Notes 
     | 
|
| 
       9267 
9387 
     | 
    
         | 
| 
       9268 
9388 
     | 
    
         | 
| 
       9269 
9389 
     | 
    
         | 
| 
      
 9390 
     | 
    
         
            +
            # **put_te_x_in_storage_to_pdf**
         
     | 
| 
      
 9391 
     | 
    
         
            +
            > AsposeResponse put_te_x_in_storage_to_pdf(name, src_path, opts)
         
     | 
| 
      
 9392 
     | 
    
         
            +
             
     | 
| 
      
 9393 
     | 
    
         
            +
            Convert TeX file (located on storage) to PDF format and upload resulting file to storage. 
         
     | 
| 
      
 9394 
     | 
    
         
            +
             
     | 
| 
      
 9395 
     | 
    
         
            +
            ### Parameters
         
     | 
| 
      
 9396 
     | 
    
         
            +
             
     | 
| 
      
 9397 
     | 
    
         
            +
            Name | Type | Description  | Notes
         
     | 
| 
      
 9398 
     | 
    
         
            +
            ------------- | ------------- | ------------- | -------------
         
     | 
| 
      
 9399 
     | 
    
         
            +
             **name** | **String**| The document name. | 
         
     | 
| 
      
 9400 
     | 
    
         
            +
             **src_path** | **String**| Full source filename (ex. /folder1/folder2/template.tex) | 
         
     | 
| 
      
 9401 
     | 
    
         
            +
             **dst_folder** | **String**| The destination document folder. | [optional] 
         
     | 
| 
      
 9402 
     | 
    
         
            +
             **storage** | **String**| The document storage. | [optional] 
         
     | 
| 
      
 9403 
     | 
    
         
            +
             
     | 
| 
      
 9404 
     | 
    
         
            +
            ### Return type
         
     | 
| 
      
 9405 
     | 
    
         
            +
             
     | 
| 
      
 9406 
     | 
    
         
            +
            [**AsposeResponse**](AsposeResponse.md)
         
     | 
| 
      
 9407 
     | 
    
         
            +
             
     | 
| 
      
 9408 
     | 
    
         
            +
            ### HTTP request headers
         
     | 
| 
      
 9409 
     | 
    
         
            +
             
     | 
| 
      
 9410 
     | 
    
         
            +
             - **Content-Type**: application/json
         
     | 
| 
      
 9411 
     | 
    
         
            +
             - **Accept**: application/json
         
     | 
| 
      
 9412 
     | 
    
         
            +
             
     | 
| 
      
 9413 
     | 
    
         
            +
             
     | 
| 
      
 9414 
     | 
    
         
            +
             
     | 
| 
       9270 
9415 
     | 
    
         
             
            # **put_text_annotation**
         
     | 
| 
       9271 
9416 
     | 
    
         
             
            > TextAnnotationResponse put_text_annotation(name, annotation_id, annotation, opts)
         
     | 
| 
       9272 
9417 
     | 
    
         | 
| 
         @@ -9431,7 +9576,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       9431 
9576 
     | 
    
         
             
            # **put_xfa_pdf_in_request_to_acro_form**
         
     | 
| 
       9432 
9577 
     | 
    
         
             
            > AsposeResponse put_xfa_pdf_in_request_to_acro_form(out_path, opts)
         
     | 
| 
       9433 
9578 
     | 
    
         | 
| 
       9434 
     | 
    
         
            -
            Converts PDF document which  
     | 
| 
      
 9579 
     | 
    
         
            +
            Converts PDF document which contains XFA form (in request content) to PDF with AcroForm and uploads resulting file to storage.
         
     | 
| 
       9435 
9580 
     | 
    
         | 
| 
       9436 
9581 
     | 
    
         
             
            ### Parameters
         
     | 
| 
       9437 
9582 
     | 
    
         | 
| 
         @@ -9455,7 +9600,7 @@ Name | Type | Description  | Notes 
     | 
|
| 
       9455 
9600 
     | 
    
         
             
            # **put_xfa_pdf_in_storage_to_acro_form**
         
     | 
| 
       9456 
9601 
     | 
    
         
             
            > AsposeResponse put_xfa_pdf_in_storage_to_acro_form(name, out_path, opts)
         
     | 
| 
       9457 
9602 
     | 
    
         | 
| 
       9458 
     | 
    
         
            -
            Converts PDF document which  
     | 
| 
      
 9603 
     | 
    
         
            +
            Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and uploads resulting file to storage
         
     | 
| 
       9459 
9604 
     | 
    
         | 
| 
       9460 
9605 
     | 
    
         
             
            ### Parameters
         
     | 
| 
       9461 
9606 
     | 
    
         |