Skip to content

Commit 13352fd

Browse files
committed
Update to v19.12
1 parent a7b4e7f commit 13352fd

File tree

354 files changed

+2238
-371
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

354 files changed

+2238
-371
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019 Aspose.Pdf for Cloud
3+
Copyright (c) 2020 Aspose.Pdf for Cloud
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Aspose.PDF Cloud
22
- API version: 3.0
3-
- Package version: 19.11.0
3+
- Package version: 19.12.0
44

55
[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.
66

@@ -92,11 +92,13 @@ Class | Method | HTTP request | Description
9292
*PdfApi* | [**GetDocumentCheckBoxFields**](docs/PdfApi.md#getdocumentcheckboxfields) | **Get** /pdf/{name}/fields/checkbox | Read document checkbox fields.
9393
*PdfApi* | [**GetDocumentCircleAnnotations**](docs/PdfApi.md#getdocumentcircleannotations) | **Get** /pdf/{name}/annotations/circle | Read document circle annotations.
9494
*PdfApi* | [**GetDocumentComboBoxFields**](docs/PdfApi.md#getdocumentcomboboxfields) | **Get** /pdf/{name}/fields/combobox | Read document combobox fields.
95+
*PdfApi* | [**GetDocumentDisplayProperties**](docs/PdfApi.md#getdocumentdisplayproperties) | **Get** /pdf/{name}/displayproperties | Read document display properties.
9596
*PdfApi* | [**GetDocumentFileAttachmentAnnotations**](docs/PdfApi.md#getdocumentfileattachmentannotations) | **Get** /pdf/{name}/annotations/fileattachment | Read document FileAttachment annotations.
9697
*PdfApi* | [**GetDocumentFreeTextAnnotations**](docs/PdfApi.md#getdocumentfreetextannotations) | **Get** /pdf/{name}/annotations/freetext | Read document free text annotations.
9798
*PdfApi* | [**GetDocumentHighlightAnnotations**](docs/PdfApi.md#getdocumenthighlightannotations) | **Get** /pdf/{name}/annotations/highlight | Read document highlight annotations.
9899
*PdfApi* | [**GetDocumentInkAnnotations**](docs/PdfApi.md#getdocumentinkannotations) | **Get** /pdf/{name}/annotations/ink | Read document ink annotations.
99100
*PdfApi* | [**GetDocumentLineAnnotations**](docs/PdfApi.md#getdocumentlineannotations) | **Get** /pdf/{name}/annotations/line | Read document line annotations.
101+
*PdfApi* | [**GetDocumentListBoxFields**](docs/PdfApi.md#getdocumentlistboxfields) | **Get** /pdf/{name}/fields/listbox | Read document listbox fields.
100102
*PdfApi* | [**GetDocumentMovieAnnotations**](docs/PdfApi.md#getdocumentmovieannotations) | **Get** /pdf/{name}/annotations/movie | Read document movie annotations.
101103
*PdfApi* | [**GetDocumentPolyLineAnnotations**](docs/PdfApi.md#getdocumentpolylineannotations) | **Get** /pdf/{name}/annotations/polyline | Read document polyline annotations.
102104
*PdfApi* | [**GetDocumentPolygonAnnotations**](docs/PdfApi.md#getdocumentpolygonannotations) | **Get** /pdf/{name}/annotations/polygon | Read document polygon annotations.
@@ -145,6 +147,7 @@ Class | Method | HTTP request | Description
145147
*PdfApi* | [**GetLaTeXInStorageToPdf**](docs/PdfApi.md#getlatexinstoragetopdf) | **Get** /pdf/create/latex | Convert LaTeX file (located on storage) to PDF format and return resulting file in response.
146148
*PdfApi* | [**GetLineAnnotation**](docs/PdfApi.md#getlineannotation) | **Get** /pdf/{name}/annotations/line/{annotationId} | Read document page line annotation by ID.
147149
*PdfApi* | [**GetLinkAnnotation**](docs/PdfApi.md#getlinkannotation) | **Get** /pdf/{name}/links/{linkId} | Read document link annotation by ID.
150+
*PdfApi* | [**GetListBoxField**](docs/PdfApi.md#getlistboxfield) | **Get** /pdf/{name}/fields/listbox/{fieldName} | Read document listbox field by name.
148151
*PdfApi* | [**GetMarkdownInStorageToPdf**](docs/PdfApi.md#getmarkdowninstoragetopdf) | **Get** /pdf/create/markdown | Convert MD file (located on storage) to PDF format and return resulting file in response.
149152
*PdfApi* | [**GetMhtInStorageToPdf**](docs/PdfApi.md#getmhtinstoragetopdf) | **Get** /pdf/create/mht | Convert MHT file (located on storage) to PDF format and return resulting file in response.
150153
*PdfApi* | [**GetMovieAnnotation**](docs/PdfApi.md#getmovieannotation) | **Get** /pdf/{name}/annotations/movie/{annotationId} | Read document page movie annotation by ID.
@@ -167,6 +170,7 @@ Class | Method | HTTP request | Description
167170
*PdfApi* | [**GetPageLineAnnotations**](docs/PdfApi.md#getpagelineannotations) | **Get** /pdf/{name}/pages/{pageNumber}/annotations/line | Read document page line annotations.
168171
*PdfApi* | [**GetPageLinkAnnotation**](docs/PdfApi.md#getpagelinkannotation) | **Get** /pdf/{name}/pages/{pageNumber}/links/{linkId} | Read document page link annotation by ID.
169172
*PdfApi* | [**GetPageLinkAnnotations**](docs/PdfApi.md#getpagelinkannotations) | **Get** /pdf/{name}/pages/{pageNumber}/links | Read document page link annotations.
173+
*PdfApi* | [**GetPageListBoxFields**](docs/PdfApi.md#getpagelistboxfields) | **Get** /pdf/{name}/page/{pageNumber}/fields/listbox | Read document page listbox fields.
170174
*PdfApi* | [**GetPageMovieAnnotations**](docs/PdfApi.md#getpagemovieannotations) | **Get** /pdf/{name}/pages/{pageNumber}/annotations/movie | Read document page movie annotations.
171175
*PdfApi* | [**GetPagePolyLineAnnotations**](docs/PdfApi.md#getpagepolylineannotations) | **Get** /pdf/{name}/pages/{pageNumber}/annotations/polyline | Read document page polyline annotations.
172176
*PdfApi* | [**GetPagePolygonAnnotations**](docs/PdfApi.md#getpagepolygonannotations) | **Get** /pdf/{name}/pages/{pageNumber}/annotations/polygon | Read document page polygon annotations.
@@ -238,6 +242,7 @@ Class | Method | HTTP request | Description
238242
*PdfApi* | [**PostChangePasswordDocumentInStorage**](docs/PdfApi.md#postchangepassworddocumentinstorage) | **Post** /pdf/{name}/changepassword | Change document password in storage.
239243
*PdfApi* | [**PostCheckBoxFields**](docs/PdfApi.md#postcheckboxfields) | **Post** /pdf/{name}/fields/checkbox | Add document checkbox fields.
240244
*PdfApi* | [**PostComboBoxFields**](docs/PdfApi.md#postcomboboxfields) | **Post** /pdf/{name}/fields/combobox | Add document combobox fields.
245+
*PdfApi* | [**PostCreateDocument**](docs/PdfApi.md#postcreatedocument) | **Post** /pdf/{name} | Create empty document.
241246
*PdfApi* | [**PostCreateField**](docs/PdfApi.md#postcreatefield) | **Post** /pdf/{name}/fields | Create field.
242247
*PdfApi* | [**PostDecryptDocumentInStorage**](docs/PdfApi.md#postdecryptdocumentinstorage) | **Post** /pdf/{name}/decrypt | Decrypt document in storage.
243248
*PdfApi* | [**PostDocumentImageFooter**](docs/PdfApi.md#postdocumentimagefooter) | **Post** /pdf/{name}/footer/image | Add document image footer.
@@ -252,6 +257,7 @@ Class | Method | HTTP request | Description
252257
*PdfApi* | [**PostImportFieldsFromXfdf**](docs/PdfApi.md#postimportfieldsfromxfdf) | **Post** /pdf/{name}/import/xfdf | Update fields from XFDF file in request.
253258
*PdfApi* | [**PostImportFieldsFromXml**](docs/PdfApi.md#postimportfieldsfromxml) | **Post** /pdf/{name}/import/xml | Update fields from XML file in request.
254259
*PdfApi* | [**PostInsertImage**](docs/PdfApi.md#postinsertimage) | **Post** /pdf/{name}/pages/{pageNumber}/images | Insert image to document page.
260+
*PdfApi* | [**PostListBoxFields**](docs/PdfApi.md#postlistboxfields) | **Post** /pdf/{name}/fields/listbox | Add document listbox fields.
255261
*PdfApi* | [**PostMovePage**](docs/PdfApi.md#postmovepage) | **Post** /pdf/{name}/pages/{pageNumber}/movePage | Move page to new position.
256262
*PdfApi* | [**PostOptimizeDocument**](docs/PdfApi.md#postoptimizedocument) | **Post** /pdf/{name}/optimize | Optimize document.
257263
*PdfApi* | [**PostPageCaretAnnotations**](docs/PdfApi.md#postpagecaretannotations) | **Post** /pdf/{name}/pages/{pageNumber}/annotations/caret | Add document page caret annotations.
@@ -297,6 +303,7 @@ Class | Method | HTTP request | Description
297303
*PdfApi* | [**PutComboBoxField**](docs/PdfApi.md#putcomboboxfield) | **Put** /pdf/{name}/fields/combobox/{fieldName} | Replace document combobox field
298304
*PdfApi* | [**PutCreateDocument**](docs/PdfApi.md#putcreatedocument) | **Put** /pdf/{name} | Create empty document.
299305
*PdfApi* | [**PutDecryptDocument**](docs/PdfApi.md#putdecryptdocument) | **Put** /pdf/decrypt | Decrypt document from content.
306+
*PdfApi* | [**PutDocumentDisplayProperties**](docs/PdfApi.md#putdocumentdisplayproperties) | **Put** /pdf/{name}/displayproperties | Update document display properties.
300307
*PdfApi* | [**PutEncryptDocument**](docs/PdfApi.md#putencryptdocument) | **Put** /pdf/encrypt | Encrypt document from content.
301308
*PdfApi* | [**PutEpubInStorageToPdf**](docs/PdfApi.md#putepubinstoragetopdf) | **Put** /pdf/{name}/create/epub | Convert EPUB file (located on storage) to PDF format and upload resulting file to storage.
302309
*PdfApi* | [**PutExportFieldsFromPdfToFdfInStorage**](docs/PdfApi.md#putexportfieldsfrompdftofdfinstorage) | **Put** /pdf/{name}/export/fdf | Export fields from from PDF in storage to FDF file in storage.
@@ -324,6 +331,7 @@ Class | Method | HTTP request | Description
324331
*PdfApi* | [**PutLaTeXInStorageToPdf**](docs/PdfApi.md#putlatexinstoragetopdf) | **Put** /pdf/{name}/create/latex | Convert LaTeX file (located on storage) to PDF format and upload resulting file to storage.
325332
*PdfApi* | [**PutLineAnnotation**](docs/PdfApi.md#putlineannotation) | **Put** /pdf/{name}/annotations/line/{annotationId} | Replace document line annotation
326333
*PdfApi* | [**PutLinkAnnotation**](docs/PdfApi.md#putlinkannotation) | **Put** /pdf/{name}/links/{linkId} | Replace document page link annotations
334+
*PdfApi* | [**PutListBoxField**](docs/PdfApi.md#putlistboxfield) | **Put** /pdf/{name}/fields/listbox/{fieldName} | Replace document listbox field
327335
*PdfApi* | [**PutMarkdownInStorageToPdf**](docs/PdfApi.md#putmarkdowninstoragetopdf) | **Put** /pdf/{name}/create/markdown | Convert MD file (located on storage) to PDF format and upload resulting file to storage.
328336
*PdfApi* | [**PutMergeDocuments**](docs/PdfApi.md#putmergedocuments) | **Put** /pdf/{name}/merge | Merge a list of documents.
329337
*PdfApi* | [**PutMhtInStorageToPdf**](docs/PdfApi.md#putmhtinstoragetopdf) | **Put** /pdf/{name}/create/mht | Convert MHT file (located on storage) to PDF format and upload resulting file to storage.
@@ -405,8 +413,11 @@ Class | Method | HTTP request | Description
405413
- [AnnotationType](docs/AnnotationType.md)
406414
- [AntialiasingProcessingType](docs/AntialiasingProcessingType.md)
407415
- [AsposeResponse](docs/AsposeResponse.md)
416+
- [Border](docs/Border.md)
408417
- [BorderCornerStyle](docs/BorderCornerStyle.md)
418+
- [BorderEffect](docs/BorderEffect.md)
409419
- [BorderInfo](docs/BorderInfo.md)
420+
- [BorderStyle](docs/BorderStyle.md)
410421
- [BoxStyle](docs/BoxStyle.md)
411422
- [CapStyle](docs/CapStyle.md)
412423
- [CaptionPosition](docs/CaptionPosition.md)
@@ -418,10 +429,14 @@ Class | Method | HTTP request | Description
418429
- [ColumnAdjustment](docs/ColumnAdjustment.md)
419430
- [CompressionType](docs/CompressionType.md)
420431
- [CryptoAlgorithm](docs/CryptoAlgorithm.md)
432+
- [Dash](docs/Dash.md)
433+
- [DefaultPageConfig](docs/DefaultPageConfig.md)
434+
- [Direction](docs/Direction.md)
421435
- [DiscUsage](docs/DiscUsage.md)
422436
- [DocFormat](docs/DocFormat.md)
423437
- [DocMdpAccessPermissionType](docs/DocMdpAccessPermissionType.md)
424438
- [DocRecognitionMode](docs/DocRecognitionMode.md)
439+
- [DocumentConfig](docs/DocumentConfig.md)
425440
- [DocumentPrivilege](docs/DocumentPrivilege.md)
426441
- [EpubRecognitionMode](docs/EpubRecognitionMode.md)
427442
- [ErrorDetails](docs/ErrorDetails.md)
@@ -456,6 +471,8 @@ Class | Method | HTTP request | Description
456471
- [ObjectExist](docs/ObjectExist.md)
457472
- [OptimizeOptions](docs/OptimizeOptions.md)
458473
- [Option](docs/Option.md)
474+
- [PageLayout](docs/PageLayout.md)
475+
- [PageMode](docs/PageMode.md)
459476
- [PageWordCount](docs/PageWordCount.md)
460477
- [Paragraph](docs/Paragraph.md)
461478
- [PartsEmbeddingModes](docs/PartsEmbeddingModes.md)
@@ -519,6 +536,8 @@ Class | Method | HTTP request | Description
519536
- [ComboBoxFieldResponse](docs/ComboBoxFieldResponse.md)
520537
- [ComboBoxFields](docs/ComboBoxFields.md)
521538
- [ComboBoxFieldsResponse](docs/ComboBoxFieldsResponse.md)
539+
- [DisplayProperties](docs/DisplayProperties.md)
540+
- [DisplayPropertiesResponse](docs/DisplayPropertiesResponse.md)
522541
- [Document](docs/Document.md)
523542
- [DocumentPageResponse](docs/DocumentPageResponse.md)
524543
- [DocumentPagesResponse](docs/DocumentPagesResponse.md)
@@ -556,6 +575,9 @@ Class | Method | HTTP request | Description
556575
- [LinkAnnotationResponse](docs/LinkAnnotationResponse.md)
557576
- [LinkAnnotations](docs/LinkAnnotations.md)
558577
- [LinkAnnotationsResponse](docs/LinkAnnotationsResponse.md)
578+
- [ListBoxFieldResponse](docs/ListBoxFieldResponse.md)
579+
- [ListBoxFields](docs/ListBoxFields.md)
580+
- [ListBoxFieldsResponse](docs/ListBoxFieldsResponse.md)
559581
- [MovieAnnotationResponse](docs/MovieAnnotationResponse.md)
560582
- [MovieAnnotations](docs/MovieAnnotations.md)
561583
- [MovieAnnotationsResponse](docs/MovieAnnotationsResponse.md)
@@ -648,6 +670,7 @@ Class | Method | HTTP request | Description
648670
- [HighlightAnnotation](docs/HighlightAnnotation.md)
649671
- [InkAnnotation](docs/InkAnnotation.md)
650672
- [LineAnnotation](docs/LineAnnotation.md)
673+
- [ListBoxField](docs/ListBoxField.md)
651674
- [PolyAnnotation](docs/PolyAnnotation.md)
652675
- [PopupAnnotationWithParent](docs/PopupAnnotationWithParent.md)
653676
- [RadioButtonField](docs/RadioButtonField.md)

annotation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright (c) 2019 Aspose.PDF Cloud
3+
* Copyright (c) 2020 Aspose.PDF Cloud
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal
66
* in the Software without restriction, including without limitation the rights

annotation_flags.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright (c) 2019 Aspose.PDF Cloud
3+
* Copyright (c) 2020 Aspose.PDF Cloud
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal
66
* in the Software without restriction, including without limitation the rights

annotation_info.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright (c) 2019 Aspose.PDF Cloud
3+
* Copyright (c) 2020 Aspose.PDF Cloud
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal
66
* in the Software without restriction, including without limitation the rights

annotation_state.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright (c) 2019 Aspose.PDF Cloud
3+
* Copyright (c) 2020 Aspose.PDF Cloud
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal
66
* in the Software without restriction, including without limitation the rights

annotation_type.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright (c) 2019 Aspose.PDF Cloud
3+
* Copyright (c) 2020 Aspose.PDF Cloud
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal
66
* in the Software without restriction, including without limitation the rights

annotations_info.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright (c) 2019 Aspose.PDF Cloud
3+
* Copyright (c) 2020 Aspose.PDF Cloud
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal
66
* in the Software without restriction, including without limitation the rights

annotations_info_response.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright (c) 2019 Aspose.PDF Cloud
3+
* Copyright (c) 2020 Aspose.PDF Cloud
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal
66
* in the Software without restriction, including without limitation the rights

annotations_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright (c) 2019 Aspose.PDF Cloud
3+
* Copyright (c) 2020 Aspose.PDF Cloud
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal
66
* in the Software without restriction, including without limitation the rights

0 commit comments

Comments
 (0)