diff --git a/README.md b/README.md
index 9e6bd42..04f0152 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Aspose.PDF Cloud
- API version: 2.0
-- Package version: 18.11.0
+- Package version: 18.12.0
[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.
@@ -37,7 +37,7 @@ Add this dependency to your project's POM:
com.aspose
aspose-cloud-pdf
- 18.11.0
+ 18.12.0
compile
```
@@ -47,7 +47,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:
```groovy
-compile "com.aspose:aspose-cloud-pdf:18.11.0"
+compile "com.aspose:aspose-cloud-pdf:18.12.0"
```
### Others
@@ -58,7 +58,7 @@ At first generate the JAR by executing:
Then manually install the following JARs:
-* target/aspose-cloud-pdf-18.11.0.jar
+* target/aspose-cloud-pdf-18.12.0.jar
* target/lib/*.jar
## Getting Started
@@ -119,6 +119,8 @@ Class | Method | HTTP request | Description
*PdfApi* | [**deleteDocumentAnnotations**](docs/PdfApi.md#deleteDocumentAnnotations) | **DELETE** /pdf/\{name}/annotations | Delete all annotations from the document
*PdfApi* | [**deleteDocumentLinkAnnotations**](docs/PdfApi.md#deleteDocumentLinkAnnotations) | **DELETE** /pdf/\{name}/links | Delete all link annotations from the document
*PdfApi* | [**deleteField**](docs/PdfApi.md#deleteField) | **DELETE** /pdf/\{name}/fields/\{fieldName} | Delete document field by name.
+*PdfApi* | [**deleteFile**](docs/PdfApi.md#deleteFile) | **DELETE** /storage/file | Remove a specific file
+*PdfApi* | [**deleteFolder**](docs/PdfApi.md#deleteFolder) | **DELETE** /storage/folder | Remove a specific folder
*PdfApi* | [**deleteImage**](docs/PdfApi.md#deleteImage) | **DELETE** /pdf/\{name}/images/\{imageId} | Delete image from document page.
*PdfApi* | [**deleteLinkAnnotation**](docs/PdfApi.md#deleteLinkAnnotation) | **DELETE** /pdf/\{name}/links/\{linkId} | Delete document page link annotation by ID
*PdfApi* | [**deletePage**](docs/PdfApi.md#deletePage) | **DELETE** /pdf/\{name}/pages/\{pageNumber} | Delete document page by its number.
@@ -128,6 +130,7 @@ Class | Method | HTTP request | Description
*PdfApi* | [**deleteProperty**](docs/PdfApi.md#deleteProperty) | **DELETE** /pdf/\{name}/documentproperties/\{propertyName} | Delete document property.
*PdfApi* | [**getCaretAnnotation**](docs/PdfApi.md#getCaretAnnotation) | **GET** /pdf/\{name}/annotations/caret/\{annotationId} | Read document page caret annotation by ID.
*PdfApi* | [**getCircleAnnotation**](docs/PdfApi.md#getCircleAnnotation) | **GET** /pdf/\{name}/annotations/circle/\{annotationId} | Read document page circle annotation by ID.
+*PdfApi* | [**getDiscUsage**](docs/PdfApi.md#getDiscUsage) | **GET** /storage/disc | Check the disk usage of the current account
*PdfApi* | [**getDocument**](docs/PdfApi.md#getDocument) | **GET** /pdf/\{name} | Read common document info.
*PdfApi* | [**getDocumentAnnotations**](docs/PdfApi.md#getDocumentAnnotations) | **GET** /pdf/\{name}/annotations | Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
*PdfApi* | [**getDocumentAttachmentByIndex**](docs/PdfApi.md#getDocumentAttachmentByIndex) | **GET** /pdf/\{name}/attachments/\{attachmentIndex} | Read document attachment info by its index.
@@ -165,9 +168,12 @@ Class | Method | HTTP request | Description
*PdfApi* | [**getImageExtractAsTiff**](docs/PdfApi.md#getImageExtractAsTiff) | **GET** /pdf/\{name}/images/\{imageId}/extract/tiff | Extract document image in TIFF format
*PdfApi* | [**getImages**](docs/PdfApi.md#getImages) | **GET** /pdf/\{name}/pages/\{pageNumber}/images | Read document images.
*PdfApi* | [**getInkAnnotation**](docs/PdfApi.md#getInkAnnotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
+*PdfApi* | [**getIsExist**](docs/PdfApi.md#getIsExist) | **GET** /storage/exist | Check if a specific file or folder exists
+*PdfApi* | [**getIsStorageExist**](docs/PdfApi.md#getIsStorageExist) | **GET** /storage/\{name}/exist | Check if storage exists
*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.
*PdfApi* | [**getLineAnnotation**](docs/PdfApi.md#getLineAnnotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
*PdfApi* | [**getLinkAnnotation**](docs/PdfApi.md#getLinkAnnotation) | **GET** /pdf/\{name}/links/\{linkId} | Read document link annotation by ID.
+*PdfApi* | [**getListFileVersions**](docs/PdfApi.md#getListFileVersions) | **GET** /storage/version | Get the file's versions list
*PdfApi* | [**getListFiles**](docs/PdfApi.md#getListFiles) | **GET** /storage/folder | Get the file listing of a specific folder
*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.
*PdfApi* | [**getPage**](docs/PdfApi.md#getPage) | **GET** /pdf/\{name}/pages/\{pageNumber} | Read document page info.
@@ -230,7 +236,10 @@ Class | Method | HTTP request | Description
*PdfApi* | [**postAppendDocument**](docs/PdfApi.md#postAppendDocument) | **POST** /pdf/\{name}/appendDocument | Append document to existing one.
*PdfApi* | [**postCreateField**](docs/PdfApi.md#postCreateField) | **POST** /pdf/\{name}/fields | Create field.
*PdfApi* | [**postDocumentTextReplace**](docs/PdfApi.md#postDocumentTextReplace) | **POST** /pdf/\{name}/text/replace | Document's replace text method.
+*PdfApi* | [**postFlattenDocument**](docs/PdfApi.md#postFlattenDocument) | **POST** /pdf/\{name}/flatten | Removes all fields from the document and place their values instead.
*PdfApi* | [**postInsertImage**](docs/PdfApi.md#postInsertImage) | **POST** /pdf/\{name}/pages/\{pageNumber}/images | Insert image to document page.
+*PdfApi* | [**postMoveFile**](docs/PdfApi.md#postMoveFile) | **POST** /storage/file | Move a specific file
+*PdfApi* | [**postMoveFolder**](docs/PdfApi.md#postMoveFolder) | **POST** /storage/folder | Move a specific folder
*PdfApi* | [**postMovePage**](docs/PdfApi.md#postMovePage) | **POST** /pdf/\{name}/pages/\{pageNumber}/movePage | Move page to new position.
*PdfApi* | [**postOptimizeDocument**](docs/PdfApi.md#postOptimizeDocument) | **POST** /pdf/\{name}/optimize | Optimize document.
*PdfApi* | [**postPageCaretAnnotations**](docs/PdfApi.md#postPageCaretAnnotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/caret | Add document page caret annotations.
@@ -258,6 +267,7 @@ Class | Method | HTTP request | Description
*PdfApi* | [**putCircleAnnotation**](docs/PdfApi.md#putCircleAnnotation) | **PUT** /pdf/\{name}/annotations/circle/\{annotationId} | Replace document circle annotation
*PdfApi* | [**putCreate**](docs/PdfApi.md#putCreate) | **PUT** /storage/file | Upload a specific file
*PdfApi* | [**putCreateDocument**](docs/PdfApi.md#putCreateDocument) | **PUT** /pdf/\{name} | Create empty document.
+*PdfApi* | [**putCreateFolder**](docs/PdfApi.md#putCreateFolder) | **PUT** /storage/folder | Create the folder
*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.
*PdfApi* | [**putFieldsFlatten**](docs/PdfApi.md#putFieldsFlatten) | **PUT** /pdf/\{name}/fields/flatten | Flatten form fields in document.
*PdfApi* | [**putFreeTextAnnotation**](docs/PdfApi.md#putFreeTextAnnotation) | **PUT** /pdf/\{name}/annotations/freetext/\{annotationId} | Replace document free text annotation
@@ -348,11 +358,13 @@ Class | Method | HTTP request | Description
- [Color](docs/Color.md)
- [ColorDepth](docs/ColorDepth.md)
- [CompressionType](docs/CompressionType.md)
+ - [DiscUsage](docs/DiscUsage.md)
- [DocFormat](docs/DocFormat.md)
- [DocRecognitionMode](docs/DocRecognitionMode.md)
- [DocumentPrivilege](docs/DocumentPrivilege.md)
- [EpubRecognitionMode](docs/EpubRecognitionMode.md)
- [FieldType](docs/FieldType.md)
+ - [FileExist](docs/FileExist.md)
- [FontEncodingRules](docs/FontEncodingRules.md)
- [FontSavingModes](docs/FontSavingModes.md)
- [FontStyles](docs/FontStyles.md)
@@ -382,7 +394,7 @@ Class | Method | HTTP request | Description
- [Point](docs/Point.md)
- [PolyIntent](docs/PolyIntent.md)
- [RasterImagesSavingModes](docs/RasterImagesSavingModes.md)
- - [RectanglePdf](docs/RectanglePdf.md)
+ - [Rectangle](docs/Rectangle.md)
- [Rotation](docs/Rotation.md)
- [Segment](docs/Segment.md)
- [ShapeType](docs/ShapeType.md)
@@ -416,6 +428,7 @@ Class | Method | HTTP request | Description
- [CircleAnnotationResponse](docs/CircleAnnotationResponse.md)
- [CircleAnnotations](docs/CircleAnnotations.md)
- [CircleAnnotationsResponse](docs/CircleAnnotationsResponse.md)
+ - [DiscUsageResponse](docs/DiscUsageResponse.md)
- [Document](docs/Document.md)
- [DocumentPageResponse](docs/DocumentPageResponse.md)
- [DocumentPagesResponse](docs/DocumentPagesResponse.md)
@@ -428,6 +441,9 @@ Class | Method | HTTP request | Description
- [FieldResponse](docs/FieldResponse.md)
- [Fields](docs/Fields.md)
- [FieldsResponse](docs/FieldsResponse.md)
+ - [FileExistResponse](docs/FileExistResponse.md)
+ - [FileVersion](docs/FileVersion.md)
+ - [FileVersionsResponse](docs/FileVersionsResponse.md)
- [FilesResponse](docs/FilesResponse.md)
- [FreeTextAnnotationResponse](docs/FreeTextAnnotationResponse.md)
- [FreeTextAnnotations](docs/FreeTextAnnotations.md)
@@ -469,6 +485,7 @@ Class | Method | HTTP request | Description
- [SquigglyAnnotationResponse](docs/SquigglyAnnotationResponse.md)
- [SquigglyAnnotations](docs/SquigglyAnnotations.md)
- [SquigglyAnnotationsResponse](docs/SquigglyAnnotationsResponse.md)
+ - [StorageExistResponse](docs/StorageExistResponse.md)
- [StrikeOutAnnotationResponse](docs/StrikeOutAnnotationResponse.md)
- [StrikeOutAnnotations](docs/StrikeOutAnnotations.md)
- [StrikeOutAnnotationsResponse](docs/StrikeOutAnnotationsResponse.md)
diff --git a/build.gradle b/build.gradle
index 07a5466..9b32fca 100644
--- a/build.gradle
+++ b/build.gradle
@@ -20,7 +20,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'
group = 'com.aspose'
-version = '18.11.0'
+version = '18.12.0'
buildscript {
repositories {
@@ -71,7 +71,7 @@ dependencies {
publish {
groupId = 'com.aspose'
artifactId = 'aspose-cloud-pdf'
- publishVersion = '18.11.0'
+ publishVersion = '18.12.0'
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.'
licences = ['MIT']
website = 'https://products.aspose.cloud/pdf/cloud'
diff --git a/docs/Annotation.md b/docs/Annotation.md
index d9ce319..00ae98a 100644
--- a/docs/Annotation.md
+++ b/docs/Annotation.md
@@ -5,12 +5,13 @@ Provides annotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/AnnotationInfo.md b/docs/AnnotationInfo.md
index b585bc9..75e2939 100644
--- a/docs/AnnotationInfo.md
+++ b/docs/AnnotationInfo.md
@@ -6,12 +6,13 @@ Provides annotation.
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**annotationType** | [**AnnotationType**](AnnotationType.md) | Gets annotation type. |
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/AnnotationsInfo.md b/docs/AnnotationsInfo.md
index a831a52..634ce6d 100644
--- a/docs/AnnotationsInfo.md
+++ b/docs/AnnotationsInfo.md
@@ -1,11 +1,11 @@
# AnnotationsInfo
-List of annotations.
+Object representing a list of annotation info objects.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<AnnotationInfo>**](AnnotationInfo.md) | | [optional]
+**list** | [**List<AnnotationInfo>**](AnnotationInfo.md) | List of annotation info objects. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/AnnotationsInfoResponse.md b/docs/AnnotationsInfoResponse.md
index 91b3b52..2927ac0 100644
--- a/docs/AnnotationsInfoResponse.md
+++ b/docs/AnnotationsInfoResponse.md
@@ -1,11 +1,11 @@
# AnnotationsInfoResponse
-
+Represents multiple annotations info reponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**AnnotationsInfo**](AnnotationsInfo.md) | | [optional]
+**annotations** | [**AnnotationsInfo**](AnnotationsInfo.md) | Annotations info | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/AttachmentResponse.md b/docs/AttachmentResponse.md
index a1c6658..ba0831b 100644
--- a/docs/AttachmentResponse.md
+++ b/docs/AttachmentResponse.md
@@ -1,11 +1,11 @@
# AttachmentResponse
-
+Represents response containing single attachment info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**attachment** | [**Attachment**](Attachment.md) | | [optional]
+**attachment** | [**Attachment**](Attachment.md) | Attachment object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/Attachments.md b/docs/Attachments.md
index dea3f11..bde91b2 100644
--- a/docs/Attachments.md
+++ b/docs/Attachments.md
@@ -1,11 +1,11 @@
# Attachments
-List of attachment.
+Represents list of attachment.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<LinkElement>**](LinkElement.md) | | [optional]
+**list** | [**List<LinkElement>**](LinkElement.md) | List of annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/AttachmentsResponse.md b/docs/AttachmentsResponse.md
index bf99695..9df4bfc 100644
--- a/docs/AttachmentsResponse.md
+++ b/docs/AttachmentsResponse.md
@@ -1,11 +1,11 @@
# AttachmentsResponse
-
+Represents response containing multiple attachments info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**attachments** | [**Attachments**](Attachments.md) | | [optional]
+**attachments** | [**Attachments**](Attachments.md) | Attachments object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/CaretAnnotation.md b/docs/CaretAnnotation.md
index 2fcd7eb..c50f6e7 100644
--- a/docs/CaretAnnotation.md
+++ b/docs/CaretAnnotation.md
@@ -5,19 +5,19 @@ Provides CaretAnnotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
-**frame** | [**RectanglePdf**](RectanglePdf.md) | Gets or sets caret rectangle. | [optional]
+**frame** | [**Rectangle**](Rectangle.md) | Gets or sets caret rectangle. | [optional]
**symbol** | [**CaretSymbol**](CaretSymbol.md) | Gets or sets symbol associated with caret. | [optional]
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/CaretAnnotationResponse.md b/docs/CaretAnnotationResponse.md
index 1373dfe..c7ebd6b 100644
--- a/docs/CaretAnnotationResponse.md
+++ b/docs/CaretAnnotationResponse.md
@@ -1,11 +1,11 @@
# CaretAnnotationResponse
-
+Represents response containing single caret annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**CaretAnnotation**](CaretAnnotation.md) | | [optional]
+**annotation** | [**CaretAnnotation**](CaretAnnotation.md) | Caret annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/CaretAnnotations.md b/docs/CaretAnnotations.md
index e7e6613..4507859 100644
--- a/docs/CaretAnnotations.md
+++ b/docs/CaretAnnotations.md
@@ -1,11 +1,11 @@
# CaretAnnotations
-List of annotations.
+Object representing a list of caret annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<CaretAnnotation>**](CaretAnnotation.md) | | [optional]
+**list** | [**List<CaretAnnotation>**](CaretAnnotation.md) | List of caret annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/CaretAnnotationsResponse.md b/docs/CaretAnnotationsResponse.md
index 165a674..cf3c212 100644
--- a/docs/CaretAnnotationsResponse.md
+++ b/docs/CaretAnnotationsResponse.md
@@ -1,11 +1,11 @@
# CaretAnnotationsResponse
-
+Represents response containing multiple caret annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**CaretAnnotations**](CaretAnnotations.md) | | [optional]
+**annotations** | [**CaretAnnotations**](CaretAnnotations.md) | Caret annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/CircleAnnotation.md b/docs/CircleAnnotation.md
index c6aa5a3..406a34d 100644
--- a/docs/CircleAnnotation.md
+++ b/docs/CircleAnnotation.md
@@ -5,19 +5,19 @@ Provides CircleAnnotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**interiorColor** | [**Color**](Color.md) | Get the annotation InteriorColor. | [optional]
-**frame** | [**RectanglePdf**](RectanglePdf.md) | Get or set the annotation Rectangle of frame. | [optional]
+**frame** | [**Rectangle**](Rectangle.md) | Get or set the annotation Rectangle of frame. | [optional]
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/CircleAnnotationResponse.md b/docs/CircleAnnotationResponse.md
index b10eb5d..2e3add2 100644
--- a/docs/CircleAnnotationResponse.md
+++ b/docs/CircleAnnotationResponse.md
@@ -1,11 +1,11 @@
# CircleAnnotationResponse
-
+Represents response containing single circle annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**CircleAnnotation**](CircleAnnotation.md) | | [optional]
+**annotation** | [**CircleAnnotation**](CircleAnnotation.md) | Circle annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/CircleAnnotations.md b/docs/CircleAnnotations.md
index 484286f..928e9f7 100644
--- a/docs/CircleAnnotations.md
+++ b/docs/CircleAnnotations.md
@@ -1,11 +1,11 @@
# CircleAnnotations
-List of annotations.
+Object representing a list of circle annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<CircleAnnotation>**](CircleAnnotation.md) | | [optional]
+**list** | [**List<CircleAnnotation>**](CircleAnnotation.md) | List of circle annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/CircleAnnotationsResponse.md b/docs/CircleAnnotationsResponse.md
index 9a439b4..9aec8d9 100644
--- a/docs/CircleAnnotationsResponse.md
+++ b/docs/CircleAnnotationsResponse.md
@@ -1,11 +1,11 @@
# CircleAnnotationsResponse
-
+Represents response containing multiple circle annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**CircleAnnotations**](CircleAnnotations.md) | | [optional]
+**annotations** | [**CircleAnnotations**](CircleAnnotations.md) | Circle annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/Color.md b/docs/Color.md
index 38713a4..21a3295 100644
--- a/docs/Color.md
+++ b/docs/Color.md
@@ -5,10 +5,10 @@ Represents color DTO.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**a** | **Integer** | |
-**r** | **Integer** | |
-**g** | **Integer** | |
-**b** | **Integer** | |
+**a** | **Integer** | Alpha component. |
+**r** | **Integer** | Red component. |
+**g** | **Integer** | Green component. |
+**b** | **Integer** | Blue component. |
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/CommonFigureAnnotation.md b/docs/CommonFigureAnnotation.md
index 9789802..df9d83f 100644
--- a/docs/CommonFigureAnnotation.md
+++ b/docs/CommonFigureAnnotation.md
@@ -6,17 +6,18 @@ Provides CommonFigureAnnotation.
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**interiorColor** | [**Color**](Color.md) | Get the annotation InteriorColor. | [optional]
-**frame** | [**RectanglePdf**](RectanglePdf.md) | Get or set the annotation Rectangle of frame. | [optional]
+**frame** | [**Rectangle**](Rectangle.md) | Get or set the annotation Rectangle of frame. | [optional]
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/DiscUsage.md b/docs/DiscUsage.md
new file mode 100644
index 0000000..81327de
--- /dev/null
+++ b/docs/DiscUsage.md
@@ -0,0 +1,14 @@
+
+# DiscUsage
+
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**usedSize** | **Integer** | |
+**totalSize** | **Integer** | |
+
+
+[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
+
+
diff --git a/docs/DiscUsageResponse.md b/docs/DiscUsageResponse.md
new file mode 100644
index 0000000..d20f785
--- /dev/null
+++ b/docs/DiscUsageResponse.md
@@ -0,0 +1,15 @@
+
+# DiscUsageResponse
+
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**discUsage** | [**DiscUsage**](DiscUsage.md) | | [optional]
+**code** | **Integer** | Response status code. |
+**status** | **String** | Response status. | [optional]
+
+
+[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
+
+
diff --git a/docs/DocumentPageResponse.md b/docs/DocumentPageResponse.md
index bcb623a..a3b21e5 100644
--- a/docs/DocumentPageResponse.md
+++ b/docs/DocumentPageResponse.md
@@ -1,11 +1,11 @@
# DocumentPageResponse
-
+Represents response containing single page info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**page** | [**Page**](Page.md) | | [optional]
+**page** | [**Page**](Page.md) | Page object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/DocumentPagesResponse.md b/docs/DocumentPagesResponse.md
index c0a2e79..ffd4bd8 100644
--- a/docs/DocumentPagesResponse.md
+++ b/docs/DocumentPagesResponse.md
@@ -1,11 +1,11 @@
# DocumentPagesResponse
-
+Represents response containing multiple pages info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**pages** | [**Pages**](Pages.md) | | [optional]
+**pages** | [**Pages**](Pages.md) | Page object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/DocumentProperties.md b/docs/DocumentProperties.md
index bc3f7b4..4b3bbf2 100644
--- a/docs/DocumentProperties.md
+++ b/docs/DocumentProperties.md
@@ -1,11 +1,11 @@
# DocumentProperties
-Pdf document properties.
+Represents list of PDF document properties.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<DocumentProperty>**](DocumentProperty.md) | | [optional]
+**list** | [**List<DocumentProperty>**](DocumentProperty.md) | List of PDF document properties. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/DocumentPropertiesResponse.md b/docs/DocumentPropertiesResponse.md
index 7681c1e..b8d083c 100644
--- a/docs/DocumentPropertiesResponse.md
+++ b/docs/DocumentPropertiesResponse.md
@@ -1,11 +1,11 @@
# DocumentPropertiesResponse
-
+Represents response containing multiple document properties info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**documentProperties** | [**DocumentProperties**](DocumentProperties.md) | | [optional]
+**documentProperties** | [**DocumentProperties**](DocumentProperties.md) | DocumentProperties object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/DocumentProperty.md b/docs/DocumentProperty.md
index a3ffe7f..6ac69a7 100644
--- a/docs/DocumentProperty.md
+++ b/docs/DocumentProperty.md
@@ -5,9 +5,9 @@ Pdf document property.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**name** | **String** | | [optional]
-**value** | **String** | | [optional]
-**builtIn** | **Boolean** | |
+**name** | **String** | Pame of the property. | [optional]
+**value** | **String** | Property value. | [optional]
+**builtIn** | **Boolean** | Value indicating whether it is a built-in property. |
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/DocumentPropertyResponse.md b/docs/DocumentPropertyResponse.md
index 64cbf9e..0b9fd63 100644
--- a/docs/DocumentPropertyResponse.md
+++ b/docs/DocumentPropertyResponse.md
@@ -1,11 +1,11 @@
# DocumentPropertyResponse
-
+Represents response containing single document property info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**documentProperty** | [**DocumentProperty**](DocumentProperty.md) | | [optional]
+**documentProperty** | [**DocumentProperty**](DocumentProperty.md) | DocumentProperty object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/DocumentResponse.md b/docs/DocumentResponse.md
index 3b2bbd9..ad8da6a 100644
--- a/docs/DocumentResponse.md
+++ b/docs/DocumentResponse.md
@@ -1,12 +1,12 @@
# DocumentResponse
-
+Represents response containing document info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**document** | [**Document**](Document.md) | | [optional]
-**messages** | **List<String>** | | [optional]
+**document** | [**Document**](Document.md) | Document object | [optional]
+**messages** | **List<String>** | A list of messages obtained while producing the responce | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/Field.md b/docs/Field.md
index 6d922db..6f420f3 100644
--- a/docs/Field.md
+++ b/docs/Field.md
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
**name** | **String** | Field name. | [optional]
**selectedItems** | **List<Integer>** | Selected items. | [optional]
**type** | [**FieldType**](FieldType.md) | Field type. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Field rectangle. | [optional]
+**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
**values** | **List<String>** | Field values. |
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/FieldResponse.md b/docs/FieldResponse.md
index 355a7e8..18ba94a 100644
--- a/docs/FieldResponse.md
+++ b/docs/FieldResponse.md
@@ -1,11 +1,11 @@
# FieldResponse
-
+Represents response containing single field info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**field** | [**Field**](Field.md) | | [optional]
+**field** | [**Field**](Field.md) | Field object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/FieldType.md b/docs/FieldType.md
index 35a5c33..99e2e31 100644
--- a/docs/FieldType.md
+++ b/docs/FieldType.md
@@ -5,10 +5,10 @@ Represents an enumeration of available field types.
## Enum
Name | Description
------------ | ------------
-**Text** |
-**Integer** |
-**Boolean** |
-**List** |
+**Text** | Textbox field
+**Integer** | Numeric textbox field
+**Boolean** | Checkbox field
+**List** | Listbox field
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/Fields.md b/docs/Fields.md
index 1a47ab3..e784653 100644
--- a/docs/Fields.md
+++ b/docs/Fields.md
@@ -1,11 +1,11 @@
# Fields
-List of form fields.
+Represents list of form fields.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<Field>**](Field.md) | |
+**list** | [**List<Field>**](Field.md) | List of form fields. |
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/FieldsResponse.md b/docs/FieldsResponse.md
index e04b5b2..747c5f5 100644
--- a/docs/FieldsResponse.md
+++ b/docs/FieldsResponse.md
@@ -1,11 +1,11 @@
# FieldsResponse
-
+Represents response containing multiple fields info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**fields** | [**Fields**](Fields.md) | | [optional]
+**fields** | [**Fields**](Fields.md) | Fields object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/FileExist.md b/docs/FileExist.md
new file mode 100644
index 0000000..0719588
--- /dev/null
+++ b/docs/FileExist.md
@@ -0,0 +1,14 @@
+
+# FileExist
+
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**isExist** | **Boolean** | |
+**isFolder** | **Boolean** | |
+
+
+[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
+
+
diff --git a/docs/FileExistResponse.md b/docs/FileExistResponse.md
new file mode 100644
index 0000000..9cf4c4c
--- /dev/null
+++ b/docs/FileExistResponse.md
@@ -0,0 +1,15 @@
+
+# FileExistResponse
+
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**fileExist** | [**FileExist**](FileExist.md) | | [optional]
+**code** | **Integer** | Response status code. |
+**status** | **String** | Response status. | [optional]
+
+
+[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
+
+
diff --git a/docs/FileVersion.md b/docs/FileVersion.md
new file mode 100644
index 0000000..a45bf84
--- /dev/null
+++ b/docs/FileVersion.md
@@ -0,0 +1,19 @@
+
+# FileVersion
+
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**versionId** | **String** | | [optional]
+**isLatest** | **Boolean** | |
+**name** | **String** | | [optional]
+**isFolder** | **Boolean** | |
+**modifiedDate** | **String** | | [optional]
+**size** | **Integer** | |
+**path** | **String** | | [optional]
+
+
+[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
+
+
diff --git a/docs/FileVersionsResponse.md b/docs/FileVersionsResponse.md
new file mode 100644
index 0000000..a14a361
--- /dev/null
+++ b/docs/FileVersionsResponse.md
@@ -0,0 +1,15 @@
+
+# FileVersionsResponse
+
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**fileVersions** | [**List<FileVersion>**](FileVersion.md) | | [optional]
+**code** | **Integer** | Response status code. |
+**status** | **String** | Response status. | [optional]
+
+
+[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
+
+
diff --git a/docs/FreeTextAnnotation.md b/docs/FreeTextAnnotation.md
index 9a353c1..11195ed 100644
--- a/docs/FreeTextAnnotation.md
+++ b/docs/FreeTextAnnotation.md
@@ -13,12 +13,13 @@ Name | Type | Description | Notes
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/FreeTextAnnotationResponse.md b/docs/FreeTextAnnotationResponse.md
index 7ab7e8e..e977293 100644
--- a/docs/FreeTextAnnotationResponse.md
+++ b/docs/FreeTextAnnotationResponse.md
@@ -1,11 +1,11 @@
# FreeTextAnnotationResponse
-
+Represents response containing single free text annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**FreeTextAnnotation**](FreeTextAnnotation.md) | | [optional]
+**annotation** | [**FreeTextAnnotation**](FreeTextAnnotation.md) | Free text annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/FreeTextAnnotations.md b/docs/FreeTextAnnotations.md
index e752a2f..8e8b301 100644
--- a/docs/FreeTextAnnotations.md
+++ b/docs/FreeTextAnnotations.md
@@ -1,11 +1,11 @@
# FreeTextAnnotations
-List of annotations.
+Object representing a list of free text annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<FreeTextAnnotation>**](FreeTextAnnotation.md) | | [optional]
+**list** | [**List<FreeTextAnnotation>**](FreeTextAnnotation.md) | List of free text annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/FreeTextAnnotationsResponse.md b/docs/FreeTextAnnotationsResponse.md
index 3cd3746..22c2981 100644
--- a/docs/FreeTextAnnotationsResponse.md
+++ b/docs/FreeTextAnnotationsResponse.md
@@ -1,11 +1,11 @@
# FreeTextAnnotationsResponse
-
+Represents response containing multiple free text annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**FreeTextAnnotations**](FreeTextAnnotations.md) | | [optional]
+**annotations** | [**FreeTextAnnotations**](FreeTextAnnotations.md) | Free text annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/HighlightAnnotation.md b/docs/HighlightAnnotation.md
index cac56ae..f9c2ba2 100644
--- a/docs/HighlightAnnotation.md
+++ b/docs/HighlightAnnotation.md
@@ -5,18 +5,18 @@ Provides HighlightAnnotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**quadPoints** | [**List<Point>**](Point.md) | Gets or sets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | [optional]
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/HighlightAnnotationResponse.md b/docs/HighlightAnnotationResponse.md
index 48697a0..184bed4 100644
--- a/docs/HighlightAnnotationResponse.md
+++ b/docs/HighlightAnnotationResponse.md
@@ -1,11 +1,11 @@
# HighlightAnnotationResponse
-
+Represents response containing single highlight annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**HighlightAnnotation**](HighlightAnnotation.md) | | [optional]
+**annotation** | [**HighlightAnnotation**](HighlightAnnotation.md) | Highlight annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/HighlightAnnotations.md b/docs/HighlightAnnotations.md
index 4f94288..66895d3 100644
--- a/docs/HighlightAnnotations.md
+++ b/docs/HighlightAnnotations.md
@@ -1,11 +1,11 @@
# HighlightAnnotations
-List of annotations.
+Object representing a list of highlight annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<HighlightAnnotation>**](HighlightAnnotation.md) | | [optional]
+**list** | [**List<HighlightAnnotation>**](HighlightAnnotation.md) | List of highlight annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/HighlightAnnotationsResponse.md b/docs/HighlightAnnotationsResponse.md
index dab6b10..69d55e2 100644
--- a/docs/HighlightAnnotationsResponse.md
+++ b/docs/HighlightAnnotationsResponse.md
@@ -1,11 +1,11 @@
# HighlightAnnotationsResponse
-
+Represents response containing multiple highlight annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**HighlightAnnotations**](HighlightAnnotations.md) | | [optional]
+**annotations** | [**HighlightAnnotations**](HighlightAnnotations.md) | Highlight annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/HorizontalAlignment.md b/docs/HorizontalAlignment.md
index c7691a5..ee2e470 100644
--- a/docs/HorizontalAlignment.md
+++ b/docs/HorizontalAlignment.md
@@ -1,6 +1,6 @@
# HorizontalAlignment
-
+Describes horizontal alignment.
## Enum
Name | Description
diff --git a/docs/Image.md b/docs/Image.md
index da2a1d6..ad55d64 100644
--- a/docs/Image.md
+++ b/docs/Image.md
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
**width** | **Integer** | Gets width of the image. |
**height** | **Integer** | Gets height of the image. |
**id** | **String** | Gets ID of the image. | [optional]
-**rectangle** | [**RectanglePdf**](RectanglePdf.md) | Gets rectangle of the image. | [optional]
+**rectangle** | [**Rectangle**](Rectangle.md) | Gets rectangle of the image. | [optional]
**pageNumber** | **Integer** | Gets page number. |
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/ImageResponse.md b/docs/ImageResponse.md
index 02b4626..331252d 100644
--- a/docs/ImageResponse.md
+++ b/docs/ImageResponse.md
@@ -1,11 +1,11 @@
# ImageResponse
-
+Represents response containing single image info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**image** | [**Image**](Image.md) | | [optional]
+**image** | [**Image**](Image.md) | Image object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/ImageSrcType.md b/docs/ImageSrcType.md
index ba02861..1369138 100644
--- a/docs/ImageSrcType.md
+++ b/docs/ImageSrcType.md
@@ -5,8 +5,8 @@ Allows to specify image file format.
## Enum
Name | Description
------------ | ------------
-**Common** |
-**Emf** |
+**Common** | Any image format except EMF
+**Emf** | EMF image format
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/Images.md b/docs/Images.md
index 0673ec8..401f3ec 100644
--- a/docs/Images.md
+++ b/docs/Images.md
@@ -1,11 +1,11 @@
# Images
-List of page images.
+Represents list of images.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<Image>**](Image.md) | | [optional]
+**list** | [**List<Image>**](Image.md) | List of images. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/ImagesResponse.md b/docs/ImagesResponse.md
index c207e27..12f25b2 100644
--- a/docs/ImagesResponse.md
+++ b/docs/ImagesResponse.md
@@ -1,11 +1,11 @@
# ImagesResponse
-
+Represents response containing multiple images info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**images** | [**Images**](Images.md) | | [optional]
+**images** | [**Images**](Images.md) | Images object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/InkAnnotation.md b/docs/InkAnnotation.md
index ae013e1..0f1d1ca 100644
--- a/docs/InkAnnotation.md
+++ b/docs/InkAnnotation.md
@@ -5,19 +5,19 @@ Provides InkAnnotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**inkList** | **List<Array>** | Gets or sets list of gestures that are independent lines which are represented by Point[] arrays. | [optional]
**capStyle** | [**CapStyle**](CapStyle.md) | Style of ink annotation line endings. | [optional]
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/InkAnnotationResponse.md b/docs/InkAnnotationResponse.md
index f78d247..38b236d 100644
--- a/docs/InkAnnotationResponse.md
+++ b/docs/InkAnnotationResponse.md
@@ -1,11 +1,11 @@
# InkAnnotationResponse
-
+Represents response containing single ink annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**InkAnnotation**](InkAnnotation.md) | | [optional]
+**annotation** | [**InkAnnotation**](InkAnnotation.md) | Ink annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/InkAnnotations.md b/docs/InkAnnotations.md
index f0235aa..a209d31 100644
--- a/docs/InkAnnotations.md
+++ b/docs/InkAnnotations.md
@@ -1,11 +1,11 @@
# InkAnnotations
-List of annotations.
+Object representing a list of ink annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<InkAnnotation>**](InkAnnotation.md) | | [optional]
+**list** | [**List<InkAnnotation>**](InkAnnotation.md) | List of ink annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/InkAnnotationsResponse.md b/docs/InkAnnotationsResponse.md
index 7b37457..3444a71 100644
--- a/docs/InkAnnotationsResponse.md
+++ b/docs/InkAnnotationsResponse.md
@@ -1,11 +1,11 @@
# InkAnnotationsResponse
-
+Represents response containing multiple ink annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**InkAnnotations**](InkAnnotations.md) | | [optional]
+**annotations** | [**InkAnnotations**](InkAnnotations.md) | Ink annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/LineAnnotation.md b/docs/LineAnnotation.md
index 9ef20f0..172314f 100644
--- a/docs/LineAnnotation.md
+++ b/docs/LineAnnotation.md
@@ -16,18 +16,18 @@ Name | Type | Description | Notes
**showCaption** | **Boolean** | Gets or sets boolean flag which determinies is contents must be shown as caption. | [optional]
**captionOffset** | [**Point**](Point.md) | Gets or sets caption text offset from its normal position. | [optional]
**captionPosition** | [**CaptionPosition**](CaptionPosition.md) | Gets or sets annotation caption position. | [optional]
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**intent** | [**LineIntent**](LineIntent.md) | Gets or sets the intent of the line annotation. | [optional]
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/LineAnnotationResponse.md b/docs/LineAnnotationResponse.md
index 0490356..52976d1 100644
--- a/docs/LineAnnotationResponse.md
+++ b/docs/LineAnnotationResponse.md
@@ -1,11 +1,11 @@
# LineAnnotationResponse
-
+Represents response containing single line annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**LineAnnotation**](LineAnnotation.md) | | [optional]
+**annotation** | [**LineAnnotation**](LineAnnotation.md) | Line annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/LineAnnotations.md b/docs/LineAnnotations.md
index a3f1cd1..1ee2fda 100644
--- a/docs/LineAnnotations.md
+++ b/docs/LineAnnotations.md
@@ -1,11 +1,11 @@
# LineAnnotations
-List of annotations.
+Object representing a list of line annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<LineAnnotation>**](LineAnnotation.md) | | [optional]
+**list** | [**List<LineAnnotation>**](LineAnnotation.md) | List of line annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/LineAnnotationsResponse.md b/docs/LineAnnotationsResponse.md
index 6b52947..ca959b5 100644
--- a/docs/LineAnnotationsResponse.md
+++ b/docs/LineAnnotationsResponse.md
@@ -1,11 +1,11 @@
# LineAnnotationsResponse
-
+Represents response containing multiple line annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**LineAnnotations**](LineAnnotations.md) | | [optional]
+**annotations** | [**LineAnnotations**](LineAnnotations.md) | Line annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/LineSpacing.md b/docs/LineSpacing.md
index 9cf7ce9..0545481 100644
--- a/docs/LineSpacing.md
+++ b/docs/LineSpacing.md
@@ -1,12 +1,12 @@
# LineSpacing
-
+Defines line spacing specifics
## Enum
Name | Description
------------ | ------------
-**FontSize** |
-**FullSize** |
+**FontSize** | Line spacing is font size
+**FullSize** | Line spacing is a full space between descender and ascender
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/LinkAnnotation.md b/docs/LinkAnnotation.md
index e736943..329f110 100644
--- a/docs/LinkAnnotation.md
+++ b/docs/LinkAnnotation.md
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
**action** | **String** | |
**highlighting** | [**LinkHighlightingMode**](LinkHighlightingMode.md) | |
**color** | [**Color**](Color.md) | | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | |
+**rect** | [**Rectangle**](Rectangle.md) | |
**id** | **String** | | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/LinkAnnotationResponse.md b/docs/LinkAnnotationResponse.md
index a035376..33ce197 100644
--- a/docs/LinkAnnotationResponse.md
+++ b/docs/LinkAnnotationResponse.md
@@ -1,11 +1,11 @@
# LinkAnnotationResponse
-
+Represents response containing single link info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**link** | [**LinkAnnotation**](LinkAnnotation.md) | | [optional]
+**link** | [**LinkAnnotation**](LinkAnnotation.md) | LinkAnnotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/LinkAnnotations.md b/docs/LinkAnnotations.md
index 5b48880..f2da751 100644
--- a/docs/LinkAnnotations.md
+++ b/docs/LinkAnnotations.md
@@ -1,11 +1,11 @@
# LinkAnnotations
-List of LinkAnnotations.
+Object representing a list of link annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<LinkAnnotation>**](LinkAnnotation.md) | | [optional]
+**list** | [**List<LinkAnnotation>**](LinkAnnotation.md) | List of link annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/LinkAnnotationsResponse.md b/docs/LinkAnnotationsResponse.md
index 9c7e856..b03e7c2 100644
--- a/docs/LinkAnnotationsResponse.md
+++ b/docs/LinkAnnotationsResponse.md
@@ -1,11 +1,11 @@
# LinkAnnotationsResponse
-
+Represents response containing multiple links info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**links** | [**LinkAnnotations**](LinkAnnotations.md) | | [optional]
+**links** | [**LinkAnnotations**](LinkAnnotations.md) | LinkAnnotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/MarkupAnnotation.md b/docs/MarkupAnnotation.md
index dd7a738..289276f 100644
--- a/docs/MarkupAnnotation.md
+++ b/docs/MarkupAnnotation.md
@@ -9,12 +9,13 @@ Name | Type | Description | Notes
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/Page.md b/docs/Page.md
index acb3898..4d3afa9 100644
--- a/docs/Page.md
+++ b/docs/Page.md
@@ -6,8 +6,8 @@ Provides link to page.
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Integer** | Page's id. |
-**images** | [**Images**](Images.md) | | [optional]
-**rectangle** | [**RectanglePdf**](RectanglePdf.md) | | [optional]
+**images** | [**Images**](Images.md) | Page's images | [optional]
+**rectangle** | [**Rectangle**](Rectangle.md) | Page's rectangle | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/Pages.md b/docs/Pages.md
index 3929f57..279e115 100644
--- a/docs/Pages.md
+++ b/docs/Pages.md
@@ -1,11 +1,11 @@
# Pages
-List of pages.
+Represents list of pages.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<Page>**](Page.md) | | [optional]
+**list** | [**List<Page>**](Page.md) | List of pages. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/Paragraph.md b/docs/Paragraph.md
index cc9a620..2adddc0 100644
--- a/docs/Paragraph.md
+++ b/docs/Paragraph.md
@@ -1,22 +1,22 @@
# Paragraph
-Paragraph DTO for add text functionality.
+Represents text paragraphs as multiline text object.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**lineSpacing** | [**LineSpacing**](LineSpacing.md) | | [optional]
-**wrapMode** | [**WrapMode**](WrapMode.md) | | [optional]
-**horizontalAlignment** | [**TextHorizontalAlignment**](TextHorizontalAlignment.md) | | [optional]
-**leftMargin** | **Double** | | [optional]
-**rightMargin** | **Double** | | [optional]
-**topMargin** | **Double** | | [optional]
-**bottomMargin** | **Double** | | [optional]
-**rectangle** | [**RectanglePdf**](RectanglePdf.md) | | [optional]
-**rotation** | **Double** | | [optional]
-**subsequentLinesIndent** | **Double** | | [optional]
-**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | | [optional]
-**lines** | [**List<TextLine>**](TextLine.md) | |
+**lineSpacing** | [**LineSpacing**](LineSpacing.md) | Line spacing mode. | [optional]
+**wrapMode** | [**WrapMode**](WrapMode.md) | Word wrap mode. | [optional]
+**horizontalAlignment** | [**TextHorizontalAlignment**](TextHorizontalAlignment.md) | Horizontal alignment for the text inside paragrph's rectangle. | [optional]
+**leftMargin** | **Double** | Left margin. | [optional]
+**rightMargin** | **Double** | Right margin. | [optional]
+**topMargin** | **Double** | Top margin. | [optional]
+**bottomMargin** | **Double** | Bottom margin. | [optional]
+**rectangle** | [**Rectangle**](Rectangle.md) | Rectangle of the paragraph. | [optional]
+**rotation** | **Double** | Rotation angle in degrees. | [optional]
+**subsequentLinesIndent** | **Double** | Subsequent lines indent value. | [optional]
+**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Vertical alignment for the text inside paragrph's rectangle | [optional]
+**lines** | [**List<TextLine>**](TextLine.md) | An array of text lines. |
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/PdfApi.md b/docs/PdfApi.md
index 9021b21..8a57925 100644
--- a/docs/PdfApi.md
+++ b/docs/PdfApi.md
@@ -8,6 +8,8 @@ Method | HTTP request | Description
[**deleteDocumentAnnotations**](PdfApi.md#deleteDocumentAnnotations) | **DELETE** /pdf/\{name}/annotations | Delete all annotations from the document
[**deleteDocumentLinkAnnotations**](PdfApi.md#deleteDocumentLinkAnnotations) | **DELETE** /pdf/\{name}/links | Delete all link annotations from the document
[**deleteField**](PdfApi.md#deleteField) | **DELETE** /pdf/\{name}/fields/\{fieldName} | Delete document field by name.
+[**deleteFile**](PdfApi.md#deleteFile) | **DELETE** /storage/file | Remove a specific file
+[**deleteFolder**](PdfApi.md#deleteFolder) | **DELETE** /storage/folder | Remove a specific folder
[**deleteImage**](PdfApi.md#deleteImage) | **DELETE** /pdf/\{name}/images/\{imageId} | Delete image from document page.
[**deleteLinkAnnotation**](PdfApi.md#deleteLinkAnnotation) | **DELETE** /pdf/\{name}/links/\{linkId} | Delete document page link annotation by ID
[**deletePage**](PdfApi.md#deletePage) | **DELETE** /pdf/\{name}/pages/\{pageNumber} | Delete document page by its number.
@@ -17,6 +19,7 @@ Method | HTTP request | Description
[**deleteProperty**](PdfApi.md#deleteProperty) | **DELETE** /pdf/\{name}/documentproperties/\{propertyName} | Delete document property.
[**getCaretAnnotation**](PdfApi.md#getCaretAnnotation) | **GET** /pdf/\{name}/annotations/caret/\{annotationId} | Read document page caret annotation by ID.
[**getCircleAnnotation**](PdfApi.md#getCircleAnnotation) | **GET** /pdf/\{name}/annotations/circle/\{annotationId} | Read document page circle annotation by ID.
+[**getDiscUsage**](PdfApi.md#getDiscUsage) | **GET** /storage/disc | Check the disk usage of the current account
[**getDocument**](PdfApi.md#getDocument) | **GET** /pdf/\{name} | Read common document info.
[**getDocumentAnnotations**](PdfApi.md#getDocumentAnnotations) | **GET** /pdf/\{name}/annotations | Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
[**getDocumentAttachmentByIndex**](PdfApi.md#getDocumentAttachmentByIndex) | **GET** /pdf/\{name}/attachments/\{attachmentIndex} | Read document attachment info by its index.
@@ -54,9 +57,12 @@ Method | HTTP request | Description
[**getImageExtractAsTiff**](PdfApi.md#getImageExtractAsTiff) | **GET** /pdf/\{name}/images/\{imageId}/extract/tiff | Extract document image in TIFF format
[**getImages**](PdfApi.md#getImages) | **GET** /pdf/\{name}/pages/\{pageNumber}/images | Read document images.
[**getInkAnnotation**](PdfApi.md#getInkAnnotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
+[**getIsExist**](PdfApi.md#getIsExist) | **GET** /storage/exist | Check if a specific file or folder exists
+[**getIsStorageExist**](PdfApi.md#getIsStorageExist) | **GET** /storage/\{name}/exist | Check if storage exists
[**getLaTeXInStorageToPdf**](PdfApi.md#getLaTeXInStorageToPdf) | **GET** /pdf/create/latex | Convert LaTeX file (located on storage) to PDF format and return resulting file in response.
[**getLineAnnotation**](PdfApi.md#getLineAnnotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
[**getLinkAnnotation**](PdfApi.md#getLinkAnnotation) | **GET** /pdf/\{name}/links/\{linkId} | Read document link annotation by ID.
+[**getListFileVersions**](PdfApi.md#getListFileVersions) | **GET** /storage/version | Get the file's versions list
[**getListFiles**](PdfApi.md#getListFiles) | **GET** /storage/folder | Get the file listing of a specific folder
[**getMhtInStorageToPdf**](PdfApi.md#getMhtInStorageToPdf) | **GET** /pdf/create/mht | Convert MHT file (located on storage) to PDF format and return resulting file in response.
[**getPage**](PdfApi.md#getPage) | **GET** /pdf/\{name}/pages/\{pageNumber} | Read document page info.
@@ -119,7 +125,10 @@ Method | HTTP request | Description
[**postAppendDocument**](PdfApi.md#postAppendDocument) | **POST** /pdf/\{name}/appendDocument | Append document to existing one.
[**postCreateField**](PdfApi.md#postCreateField) | **POST** /pdf/\{name}/fields | Create field.
[**postDocumentTextReplace**](PdfApi.md#postDocumentTextReplace) | **POST** /pdf/\{name}/text/replace | Document's replace text method.
+[**postFlattenDocument**](PdfApi.md#postFlattenDocument) | **POST** /pdf/\{name}/flatten | Removes all fields from the document and place their values instead.
[**postInsertImage**](PdfApi.md#postInsertImage) | **POST** /pdf/\{name}/pages/\{pageNumber}/images | Insert image to document page.
+[**postMoveFile**](PdfApi.md#postMoveFile) | **POST** /storage/file | Move a specific file
+[**postMoveFolder**](PdfApi.md#postMoveFolder) | **POST** /storage/folder | Move a specific folder
[**postMovePage**](PdfApi.md#postMovePage) | **POST** /pdf/\{name}/pages/\{pageNumber}/movePage | Move page to new position.
[**postOptimizeDocument**](PdfApi.md#postOptimizeDocument) | **POST** /pdf/\{name}/optimize | Optimize document.
[**postPageCaretAnnotations**](PdfApi.md#postPageCaretAnnotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/caret | Add document page caret annotations.
@@ -147,6 +156,7 @@ Method | HTTP request | Description
[**putCircleAnnotation**](PdfApi.md#putCircleAnnotation) | **PUT** /pdf/\{name}/annotations/circle/\{annotationId} | Replace document circle annotation
[**putCreate**](PdfApi.md#putCreate) | **PUT** /storage/file | Upload a specific file
[**putCreateDocument**](PdfApi.md#putCreateDocument) | **PUT** /pdf/\{name} | Create empty document.
+[**putCreateFolder**](PdfApi.md#putCreateFolder) | **PUT** /storage/folder | Create the folder
[**putEpubInStorageToPdf**](PdfApi.md#putEpubInStorageToPdf) | **PUT** /pdf/\{name}/create/epub | Convert EPUB file (located on storage) to PDF format and upload resulting file to storage.
[**putFieldsFlatten**](PdfApi.md#putFieldsFlatten) | **PUT** /pdf/\{name}/fields/flatten | Flatten form fields in document.
[**putFreeTextAnnotation**](PdfApi.md#putFreeTextAnnotation) | **PUT** /pdf/\{name}/annotations/freetext/\{annotationId} | Replace document free text annotation
@@ -312,6 +322,52 @@ Name | Type | Description | Notes
[**AsposeResponse**](AsposeResponse.md)
+### HTTP request headers
+
+ - **Content-Type**: application/json
+ - **Accept**: application/json
+
+
+# **deleteFile**
+> AsposeResponse deleteFile(path, versionId, storage)
+
+Remove a specific file
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **path** | **String**| Path of the file including file name and extension e.g. /Folder1/file.ext |
+ **versionId** | **String**| File's version | [optional]
+ **storage** | **String**| User's storage name | [optional]
+
+### Return type
+
+[**AsposeResponse**](AsposeResponse.md)
+
+### HTTP request headers
+
+ - **Content-Type**: application/json
+ - **Accept**: application/json
+
+
+# **deleteFolder**
+> AsposeResponse deleteFolder(path, storage, recursive)
+
+Remove a specific folder
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **path** | **String**| Folder path e.g. /Folder1 |
+ **storage** | **String**| User's storage name | [optional]
+ **recursive** | **Boolean**| Remove recursivelly inner folder/files. If false and folder contains data than exception is raised. | [optional] [default to false]
+
+### Return type
+
+[**AsposeResponse**](AsposeResponse.md)
+
### HTTP request headers
- **Content-Type**: application/json
@@ -527,6 +583,27 @@ Name | Type | Description | Notes
[**CircleAnnotationResponse**](CircleAnnotationResponse.md)
+### HTTP request headers
+
+ - **Content-Type**: application/json
+ - **Accept**: application/json
+
+
+# **getDiscUsage**
+> DiscUsageResponse getDiscUsage(storage)
+
+Check the disk usage of the current account
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **storage** | **String**| User's storage name | [optional]
+
+### Return type
+
+[**DiscUsageResponse**](DiscUsageResponse.md)
+
### HTTP request headers
- **Content-Type**: application/json
@@ -1407,6 +1484,50 @@ Name | Type | Description | Notes
[**InkAnnotationResponse**](InkAnnotationResponse.md)
+### HTTP request headers
+
+ - **Content-Type**: application/json
+ - **Accept**: application/json
+
+
+# **getIsExist**
+> FileExistResponse getIsExist(path, versionId, storage)
+
+Check if a specific file or folder exists
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **path** | **String**| File or folder path e.g. /file.ext or /Folder1 |
+ **versionId** | **String**| File's version | [optional]
+ **storage** | **String**| User's storage name | [optional]
+
+### Return type
+
+[**FileExistResponse**](FileExistResponse.md)
+
+### HTTP request headers
+
+ - **Content-Type**: application/json
+ - **Accept**: application/json
+
+
+# **getIsStorageExist**
+> StorageExistResponse getIsStorageExist(name)
+
+Check if storage exists
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **name** | **String**| Storage name |
+
+### Return type
+
+[**StorageExistResponse**](StorageExistResponse.md)
+
### HTTP request headers
- **Content-Type**: application/json
@@ -1477,6 +1598,28 @@ Name | Type | Description | Notes
[**LinkAnnotationResponse**](LinkAnnotationResponse.md)
+### HTTP request headers
+
+ - **Content-Type**: application/json
+ - **Accept**: application/json
+
+
+# **getListFileVersions**
+> FileVersionsResponse getListFileVersions(path, storage)
+
+Get the file's versions list
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **path** | **String**| File path e.g. /file.ext or /Folder1/file.ext |
+ **storage** | **String**| User's storage name | [optional]
+
+### Return type
+
+[**FileVersionsResponse**](FileVersionsResponse.md)
+
### HTTP request headers
- **Content-Type**: application/json
@@ -2079,10 +2222,10 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**name** | **String**| The document name. |
**pageNumber** | **Integer**| Number of page (starting from 1). |
- **LLX** | **Double**| |
- **LLY** | **Double**| |
- **URX** | **Double**| |
- **URY** | **Double**| |
+ **LLX** | **Double**| X-coordinate of lower - left corner. |
+ **LLY** | **Double**| Y - coordinate of lower-left corner. |
+ **URX** | **Double**| X - coordinate of upper-right corner. |
+ **URY** | **Double**| Y - coordinate of upper-right corner. |
**format** | **List<String>**| List of formats for search. | [optional]
**regex** | **String**| Formats are specified as a regular expression. | [optional]
**splitRects** | **Boolean**| Split result fragments (default is true). | [optional]
@@ -2233,7 +2376,7 @@ Converts PDF document (located on storage) to EPUB format and returns resulting
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**name** | **String**| The document name. |
- **contentRecognitionMode** | **String**| Рroperty tunes conversion for this or that desirable method of recognition of content. | [optional]
+ **contentRecognitionMode** | **String**| Property tunes conversion for this or that desirable method of recognition of content. | [optional]
**folder** | **String**| The document folder. | [optional]
**storage** | **String**| The document storage. | [optional]
@@ -2735,10 +2878,10 @@ Read document text.
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**name** | **String**| The document name. |
- **LLX** | **Double**| |
- **LLY** | **Double**| |
- **URX** | **Double**| |
- **URY** | **Double**| |
+ **LLX** | **Double**| X-coordinate of lower - left corner. |
+ **LLY** | **Double**| Y - coordinate of lower-left corner. |
+ **URX** | **Double**| X - coordinate of upper-right corner. |
+ **URY** | **Double**| Y - coordinate of upper-right corner. |
**format** | **List<String>**| List of formats for search. | [optional]
**regex** | **String**| Formats are specified as a regular expression. | [optional]
**splitRects** | **Boolean**| Split result fragments (default is true). | [optional]
@@ -3039,6 +3182,32 @@ Name | Type | Description | Notes
[**TextReplaceResponse**](TextReplaceResponse.md)
+### HTTP request headers
+
+ - **Content-Type**: application/json
+ - **Accept**: application/json
+
+
+# **postFlattenDocument**
+> AsposeResponse postFlattenDocument(name, updateAppearances, callEvents, hideButtons, storage, folder)
+
+Removes all fields from the document and place their values instead.
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **name** | **String**| The document name. |
+ **updateAppearances** | **Boolean**| If set, all field appearances will be regenerated before flattening. This option may help if field is incorrectly flattened. This option may decrease performance.. | [optional]
+ **callEvents** | **Boolean**| If set, formatting and other JavaScript events will be called. | [optional]
+ **hideButtons** | **Boolean**| If set, buttons will be removed from flattened document. | [optional]
+ **storage** | **String**| The document storage. | [optional]
+ **folder** | **String**| The document folder. | [optional]
+
+### Return type
+
+[**AsposeResponse**](AsposeResponse.md)
+
### HTTP request headers
- **Content-Type**: application/json
@@ -3069,6 +3238,55 @@ Name | Type | Description | Notes
[**AsposeResponse**](AsposeResponse.md)
+### HTTP request headers
+
+ - **Content-Type**: application/json
+ - **Accept**: application/json
+
+
+# **postMoveFile**
+> AsposeResponse postMoveFile(src, dest, versionId, storage, destStorage)
+
+Move a specific file
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **src** | **String**| Source file path e.g. /fileSource.ext |
+ **dest** | **String**| Destination file path e.g. /fileDestination.ext |
+ **versionId** | **String**| Source file's version, | [optional]
+ **storage** | **String**| User's source storage name | [optional]
+ **destStorage** | **String**| User's destination storage name | [optional]
+
+### Return type
+
+[**AsposeResponse**](AsposeResponse.md)
+
+### HTTP request headers
+
+ - **Content-Type**: application/json
+ - **Accept**: application/json
+
+
+# **postMoveFolder**
+> AsposeResponse postMoveFolder(src, dest, storage, destStorage)
+
+Move a specific folder
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **src** | **String**| Source folder path e.g. /Folder1 |
+ **dest** | **String**| Destination folder path e.g. /Folder2 |
+ **storage** | **String**| User's source storage name | [optional]
+ **destStorage** | **String**| User's destination storage name | [optional]
+
+### Return type
+
+[**AsposeResponse**](AsposeResponse.md)
+
### HTTP request headers
- **Content-Type**: application/json
@@ -3738,6 +3956,29 @@ Name | Type | Description | Notes
[**DocumentResponse**](DocumentResponse.md)
+### HTTP request headers
+
+ - **Content-Type**: application/json
+ - **Accept**: application/json
+
+
+# **putCreateFolder**
+> AsposeResponse putCreateFolder(path, storage, destStorage)
+
+Create the folder
+
+### Parameters
+
+Name | Type | Description | Notes
+------------- | ------------- | ------------- | -------------
+ **path** | **String**| Target folder's path e.g. Folder1/Folder2/. The folders will be created recursively |
+ **storage** | **String**| User's source storage name | [optional]
+ **destStorage** | **String**| User's destination storage name | [optional]
+
+### Return type
+
+[**AsposeResponse**](AsposeResponse.md)
+
### HTTP request headers
- **Content-Type**: application/json
@@ -4512,7 +4753,7 @@ Converts PDF document (in request content) to EPUB format and uploads resulting
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**outPath** | **String**| Full resulting filename (ex. /folder1/folder2/result.epub) |
- **contentRecognitionMode** | **String**| Рroperty tunes conversion for this or that desirable method of recognition of content. | [optional]
+ **contentRecognitionMode** | **String**| Property tunes conversion for this or that desirable method of recognition of content. | [optional]
**storage** | **String**| The document storage. | [optional]
**file** | **File**| A file to be converted. | [optional]
@@ -4850,7 +5091,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**name** | **String**| The document name. |
**outPath** | **String**| Full resulting filename (ex. /folder1/folder2/result.epub) |
- **contentRecognitionMode** | **String**| Рroperty tunes conversion for this or that desirable method of recognition of content. | [optional]
+ **contentRecognitionMode** | **String**| Property tunes conversion for this or that desirable method of recognition of content. | [optional]
**folder** | **String**| The document folder. | [optional]
**storage** | **String**| The document storage. | [optional]
diff --git a/docs/PolyAnnotation.md b/docs/PolyAnnotation.md
index 580215a..074a071 100644
--- a/docs/PolyAnnotation.md
+++ b/docs/PolyAnnotation.md
@@ -14,12 +14,13 @@ Name | Type | Description | Notes
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/PolyLineAnnotation.md b/docs/PolyLineAnnotation.md
index 0c80091..0bf082f 100644
--- a/docs/PolyLineAnnotation.md
+++ b/docs/PolyLineAnnotation.md
@@ -5,7 +5,6 @@ Provides PolyLineAnnotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**interiorColor** | [**Color**](Color.md) | Gets or sets the interior color with which to fill the annotation’s line endings. | [optional]
**startingStyle** | [**LineEnding**](LineEnding.md) | Gets or sets the style of first line ending. | [optional]
**endingStyle** | [**LineEnding**](LineEnding.md) | Gets or sets the style of second line ending. | [optional]
@@ -15,12 +14,13 @@ Name | Type | Description | Notes
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/PolyLineAnnotationResponse.md b/docs/PolyLineAnnotationResponse.md
index 145a811..dd2dba1 100644
--- a/docs/PolyLineAnnotationResponse.md
+++ b/docs/PolyLineAnnotationResponse.md
@@ -1,11 +1,11 @@
# PolyLineAnnotationResponse
-
+Represents response containing single polyline annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**PolyLineAnnotation**](PolyLineAnnotation.md) | | [optional]
+**annotation** | [**PolyLineAnnotation**](PolyLineAnnotation.md) | Polyline annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/PolyLineAnnotations.md b/docs/PolyLineAnnotations.md
index b0d2fac..ca8cc75 100644
--- a/docs/PolyLineAnnotations.md
+++ b/docs/PolyLineAnnotations.md
@@ -1,11 +1,11 @@
# PolyLineAnnotations
-List of annotations.
+Object representing a list of polyline annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<PolyLineAnnotation>**](PolyLineAnnotation.md) | | [optional]
+**list** | [**List<PolyLineAnnotation>**](PolyLineAnnotation.md) | List of polyline annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/PolyLineAnnotationsResponse.md b/docs/PolyLineAnnotationsResponse.md
index da609dc..66cdadc 100644
--- a/docs/PolyLineAnnotationsResponse.md
+++ b/docs/PolyLineAnnotationsResponse.md
@@ -1,11 +1,11 @@
# PolyLineAnnotationsResponse
-
+Represents response containing multiple polyline annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**PolyLineAnnotations**](PolyLineAnnotations.md) | | [optional]
+**annotations** | [**PolyLineAnnotations**](PolyLineAnnotations.md) | Polyline annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/PolygonAnnotation.md b/docs/PolygonAnnotation.md
index 4620b5a..7ee5eec 100644
--- a/docs/PolygonAnnotation.md
+++ b/docs/PolygonAnnotation.md
@@ -5,7 +5,6 @@ Provides PolygonAnnotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**interiorColor** | [**Color**](Color.md) | Gets or sets the interior color with which to fill the annotation’s line endings. | [optional]
**startingStyle** | [**LineEnding**](LineEnding.md) | Gets or sets the style of first line ending. | [optional]
**endingStyle** | [**LineEnding**](LineEnding.md) | Gets or sets the style of second line ending. | [optional]
@@ -15,12 +14,13 @@ Name | Type | Description | Notes
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/PolygonAnnotationResponse.md b/docs/PolygonAnnotationResponse.md
index 0ca0642..5b56197 100644
--- a/docs/PolygonAnnotationResponse.md
+++ b/docs/PolygonAnnotationResponse.md
@@ -1,11 +1,11 @@
# PolygonAnnotationResponse
-
+Represents response containing single polygon annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**PolygonAnnotation**](PolygonAnnotation.md) | | [optional]
+**annotation** | [**PolygonAnnotation**](PolygonAnnotation.md) | Polygon annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/PolygonAnnotations.md b/docs/PolygonAnnotations.md
index 2124b71..26f184d 100644
--- a/docs/PolygonAnnotations.md
+++ b/docs/PolygonAnnotations.md
@@ -1,11 +1,11 @@
# PolygonAnnotations
-List of annotations.
+Object representing a list of polygon annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<PolygonAnnotation>**](PolygonAnnotation.md) | | [optional]
+**list** | [**List<PolygonAnnotation>**](PolygonAnnotation.md) | List of polygon annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/PolygonAnnotationsResponse.md b/docs/PolygonAnnotationsResponse.md
index 06e9de3..675587f 100644
--- a/docs/PolygonAnnotationsResponse.md
+++ b/docs/PolygonAnnotationsResponse.md
@@ -1,11 +1,11 @@
# PolygonAnnotationsResponse
-
+Represents response containing multiple polygon annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**PolygonAnnotations**](PolygonAnnotations.md) | | [optional]
+**annotations** | [**PolygonAnnotations**](PolygonAnnotations.md) | Polygon annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/PopupAnnotation.md b/docs/PopupAnnotation.md
index d7f339b..cc1fffa 100644
--- a/docs/PopupAnnotation.md
+++ b/docs/PopupAnnotation.md
@@ -5,14 +5,14 @@ Provides PopupAnnotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**open** | **Boolean** | Gets or sets a flag specifying whether the pop-up annotation should initially be displayed open. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/PopupAnnotationResponse.md b/docs/PopupAnnotationResponse.md
index 35c0a19..8a2a4af 100644
--- a/docs/PopupAnnotationResponse.md
+++ b/docs/PopupAnnotationResponse.md
@@ -1,11 +1,11 @@
# PopupAnnotationResponse
-
+Represents response containing single popup annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**PopupAnnotationWithParent**](PopupAnnotationWithParent.md) | | [optional]
+**annotation** | [**PopupAnnotationWithParent**](PopupAnnotationWithParent.md) | Popup annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/PopupAnnotationWithParent.md b/docs/PopupAnnotationWithParent.md
index b269092..a28b016 100644
--- a/docs/PopupAnnotationWithParent.md
+++ b/docs/PopupAnnotationWithParent.md
@@ -6,14 +6,14 @@ Provides PopupAnnotation.
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**parent** | [**AnnotationInfo**](AnnotationInfo.md) | Parent of annotation. | [optional]
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**open** | **Boolean** | Gets or sets a flag specifying whether the pop-up annotation should initially be displayed open. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/PopupAnnotations.md b/docs/PopupAnnotations.md
index 1760973..b629167 100644
--- a/docs/PopupAnnotations.md
+++ b/docs/PopupAnnotations.md
@@ -1,11 +1,11 @@
# PopupAnnotations
-List of annotations.
+Object representing a list of popup annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<PopupAnnotationWithParent>**](PopupAnnotationWithParent.md) | | [optional]
+**list** | [**List<PopupAnnotationWithParent>**](PopupAnnotationWithParent.md) | List of popup annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/PopupAnnotationsResponse.md b/docs/PopupAnnotationsResponse.md
index 0f4e876..e9aa584 100644
--- a/docs/PopupAnnotationsResponse.md
+++ b/docs/PopupAnnotationsResponse.md
@@ -1,11 +1,11 @@
# PopupAnnotationsResponse
-
+Represents response containing multiple popup annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**PopupAnnotations**](PopupAnnotations.md) | | [optional]
+**annotations** | [**PopupAnnotations**](PopupAnnotations.md) | Popup annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/Rectangle.md b/docs/Rectangle.md
new file mode 100644
index 0000000..e7b4b36
--- /dev/null
+++ b/docs/Rectangle.md
@@ -0,0 +1,16 @@
+
+# Rectangle
+Represents rectangle DTO.
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**lLX** | **Double** | X-coordinate of lower - left corner. |
+**lLY** | **Double** | Y - coordinate of lower-left corner. |
+**uRX** | **Double** | X - coordinate of upper-right corner. |
+**uRY** | **Double** | Y - coordinate of upper-right corner. |
+
+
+[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
+
+
diff --git a/docs/Segment.md b/docs/Segment.md
index 33f1417..9a0c04e 100644
--- a/docs/Segment.md
+++ b/docs/Segment.md
@@ -1,12 +1,12 @@
# Segment
-
+Represents segment of Pdf text.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**value** | **String** | |
-**textState** | [**TextState**](TextState.md) | | [optional]
+**value** | **String** | Text that the Segment object represents. |
+**textState** | [**TextState**](TextState.md) | Text state for the text that Segment object represents. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/Signature.md b/docs/Signature.md
index 4917d63..306a4cf 100644
--- a/docs/Signature.md
+++ b/docs/Signature.md
@@ -1,6 +1,6 @@
# Signature
-
+Represents signature.
## Properties
Name | Type | Description | Notes
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
**contact** | **String** | Gets or sets the contact of the signature. | [optional]
**location** | **String** | Gets or sets the location of the signature. | [optional]
**visible** | **Boolean** | Gets or sets a value indicating whether this is visible. Supports only when signing particular page. |
-**rectangle** | [**RectanglePdf**](RectanglePdf.md) | Gets or sets the visible rectangle of the signature. Supports only when signing particular page. | [optional]
+**rectangle** | [**Rectangle**](Rectangle.md) | Gets or sets the visible rectangle of the signature. Supports only when signing particular page. | [optional]
**formFieldName** | **String** | Gets or sets the name of the signature field. Supports only when signing document with particular form field. | [optional]
**authority** | **String** | Gets or sets the name of the person or authority signing the document.. | [optional]
**date** | **String** | Gets or sets the time of signing. | [optional]
diff --git a/docs/SignatureType.md b/docs/SignatureType.md
index 6fa392f..07e7352 100644
--- a/docs/SignatureType.md
+++ b/docs/SignatureType.md
@@ -1,6 +1,6 @@
# SignatureType
-
+The type of signature.
## Enum
Name | Description
diff --git a/docs/SignatureVerifyResponse.md b/docs/SignatureVerifyResponse.md
index daee0fe..74bf42e 100644
--- a/docs/SignatureVerifyResponse.md
+++ b/docs/SignatureVerifyResponse.md
@@ -1,11 +1,11 @@
# SignatureVerifyResponse
-Returns also a message.
+Represent responce containing signature verification result
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**valid** | **Boolean** | Valid sign. |
+**valid** | **Boolean** | True if signature is valid and false if not |
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/SplitResultResponse.md b/docs/SplitResultResponse.md
index dcecbb4..525500c 100644
--- a/docs/SplitResultResponse.md
+++ b/docs/SplitResultResponse.md
@@ -1,11 +1,11 @@
# SplitResultResponse
-Represents split result object.
+Represents responce containing split result.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**result** | [**SplitResult**](SplitResult.md) | Gets or sets the splitting result. | [optional]
+**result** | [**SplitResult**](SplitResult.md) | SplitResult object. | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/SquareAnnotation.md b/docs/SquareAnnotation.md
index 5f6f99e..bd1be49 100644
--- a/docs/SquareAnnotation.md
+++ b/docs/SquareAnnotation.md
@@ -5,19 +5,19 @@ Provides SquareAnnotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**interiorColor** | [**Color**](Color.md) | Get the annotation InteriorColor. | [optional]
-**frame** | [**RectanglePdf**](RectanglePdf.md) | Get or set the annotation Rectangle of frame. | [optional]
+**frame** | [**Rectangle**](Rectangle.md) | Get or set the annotation Rectangle of frame. | [optional]
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/SquareAnnotationResponse.md b/docs/SquareAnnotationResponse.md
index 131bf3d..55e5af1 100644
--- a/docs/SquareAnnotationResponse.md
+++ b/docs/SquareAnnotationResponse.md
@@ -1,11 +1,11 @@
# SquareAnnotationResponse
-
+Represents response containing single square annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**SquareAnnotation**](SquareAnnotation.md) | | [optional]
+**annotation** | [**SquareAnnotation**](SquareAnnotation.md) | Square annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/SquareAnnotations.md b/docs/SquareAnnotations.md
index 0302392..6993bd5 100644
--- a/docs/SquareAnnotations.md
+++ b/docs/SquareAnnotations.md
@@ -1,11 +1,11 @@
# SquareAnnotations
-List of annotations.
+Object representing a list of square annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<SquareAnnotation>**](SquareAnnotation.md) | | [optional]
+**list** | [**List<SquareAnnotation>**](SquareAnnotation.md) | List of square annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/SquareAnnotationsResponse.md b/docs/SquareAnnotationsResponse.md
index a6474a0..4dbf9b6 100644
--- a/docs/SquareAnnotationsResponse.md
+++ b/docs/SquareAnnotationsResponse.md
@@ -1,11 +1,11 @@
# SquareAnnotationsResponse
-
+Represents response containing multiple square annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**SquareAnnotations**](SquareAnnotations.md) | | [optional]
+**annotations** | [**SquareAnnotations**](SquareAnnotations.md) | Square annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/SquigglyAnnotation.md b/docs/SquigglyAnnotation.md
index a5e4e21..e9cf064 100644
--- a/docs/SquigglyAnnotation.md
+++ b/docs/SquigglyAnnotation.md
@@ -5,18 +5,18 @@ Provides SquigglyAnnotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**quadPoints** | [**List<Point>**](Point.md) | Gets or sets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | [optional]
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/SquigglyAnnotationResponse.md b/docs/SquigglyAnnotationResponse.md
index 6c102ae..37aa43e 100644
--- a/docs/SquigglyAnnotationResponse.md
+++ b/docs/SquigglyAnnotationResponse.md
@@ -1,11 +1,11 @@
# SquigglyAnnotationResponse
-
+Represents response containing single squiggly-underline annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**SquigglyAnnotation**](SquigglyAnnotation.md) | | [optional]
+**annotation** | [**SquigglyAnnotation**](SquigglyAnnotation.md) | Squiggly-underline annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/SquigglyAnnotations.md b/docs/SquigglyAnnotations.md
index b340527..2654c38 100644
--- a/docs/SquigglyAnnotations.md
+++ b/docs/SquigglyAnnotations.md
@@ -1,11 +1,11 @@
# SquigglyAnnotations
-List of annotations.
+Object representing a list of squiggly-underline annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<SquigglyAnnotation>**](SquigglyAnnotation.md) | | [optional]
+**list** | [**List<SquigglyAnnotation>**](SquigglyAnnotation.md) | List of squiggly-underline annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/SquigglyAnnotationsResponse.md b/docs/SquigglyAnnotationsResponse.md
index 2b034f8..212253b 100644
--- a/docs/SquigglyAnnotationsResponse.md
+++ b/docs/SquigglyAnnotationsResponse.md
@@ -1,11 +1,11 @@
# SquigglyAnnotationsResponse
-
+Represents response containing multiple squiggly-underline annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**SquigglyAnnotations**](SquigglyAnnotations.md) | | [optional]
+**annotations** | [**SquigglyAnnotations**](SquigglyAnnotations.md) | Squiggly-underline annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/StorageExistResponse.md b/docs/StorageExistResponse.md
new file mode 100644
index 0000000..346a57e
--- /dev/null
+++ b/docs/StorageExistResponse.md
@@ -0,0 +1,15 @@
+
+# StorageExistResponse
+
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**isExist** | **Boolean** | |
+**code** | **Integer** | Response status code. |
+**status** | **String** | Response status. | [optional]
+
+
+[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
+
+
diff --git a/docs/StrikeOutAnnotation.md b/docs/StrikeOutAnnotation.md
index bb694e9..cb62955 100644
--- a/docs/StrikeOutAnnotation.md
+++ b/docs/StrikeOutAnnotation.md
@@ -5,18 +5,18 @@ Provides StrikeOutAnnotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**quadPoints** | [**List<Point>**](Point.md) | Gets or sets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | [optional]
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/StrikeOutAnnotationResponse.md b/docs/StrikeOutAnnotationResponse.md
index 876dfd0..d6bb4d8 100644
--- a/docs/StrikeOutAnnotationResponse.md
+++ b/docs/StrikeOutAnnotationResponse.md
@@ -1,11 +1,11 @@
# StrikeOutAnnotationResponse
-
+Represents response containing single strikeout annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**StrikeOutAnnotation**](StrikeOutAnnotation.md) | | [optional]
+**annotation** | [**StrikeOutAnnotation**](StrikeOutAnnotation.md) | Strikeout annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/StrikeOutAnnotations.md b/docs/StrikeOutAnnotations.md
index fa18225..cea7573 100644
--- a/docs/StrikeOutAnnotations.md
+++ b/docs/StrikeOutAnnotations.md
@@ -1,11 +1,11 @@
# StrikeOutAnnotations
-List of annotations.
+Object representing a list of strikeout annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<StrikeOutAnnotation>**](StrikeOutAnnotation.md) | | [optional]
+**list** | [**List<StrikeOutAnnotation>**](StrikeOutAnnotation.md) | List of strikeout annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/StrikeOutAnnotationsResponse.md b/docs/StrikeOutAnnotationsResponse.md
index 40c8691..9351548 100644
--- a/docs/StrikeOutAnnotationsResponse.md
+++ b/docs/StrikeOutAnnotationsResponse.md
@@ -1,11 +1,11 @@
# StrikeOutAnnotationsResponse
-
+Represents response containing multiple strikeout annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**StrikeOutAnnotations**](StrikeOutAnnotations.md) | | [optional]
+**annotations** | [**StrikeOutAnnotations**](StrikeOutAnnotations.md) | Strikeout annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/TextAnnotation.md b/docs/TextAnnotation.md
index 51b3c67..2ca50af 100644
--- a/docs/TextAnnotation.md
+++ b/docs/TextAnnotation.md
@@ -7,18 +7,18 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**state** | [**AnnotationState**](AnnotationState.md) | Gets or sets the state to which the original annotation should be set. | [optional]
**open** | **Boolean** | Gets or sets is the annotation open. | [optional]
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**icon** | [**TextIcon**](TextIcon.md) | Gets or sets an icon to be used in displaying the annotation. | [optional]
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/TextAnnotationResponse.md b/docs/TextAnnotationResponse.md
index 5e1ea10..f8f74ea 100644
--- a/docs/TextAnnotationResponse.md
+++ b/docs/TextAnnotationResponse.md
@@ -1,11 +1,11 @@
# TextAnnotationResponse
-
+Represents response containing single text annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**TextAnnotation**](TextAnnotation.md) | | [optional]
+**annotation** | [**TextAnnotation**](TextAnnotation.md) | Text annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/TextAnnotations.md b/docs/TextAnnotations.md
index 0aff3ab..91a47a7 100644
--- a/docs/TextAnnotations.md
+++ b/docs/TextAnnotations.md
@@ -1,11 +1,11 @@
# TextAnnotations
-List of annotations.
+Object representing a list of text annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<TextAnnotation>**](TextAnnotation.md) | | [optional]
+**list** | [**List<TextAnnotation>**](TextAnnotation.md) | List of text annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/TextAnnotationsResponse.md b/docs/TextAnnotationsResponse.md
index 0d95c0a..d414e01 100644
--- a/docs/TextAnnotationsResponse.md
+++ b/docs/TextAnnotationsResponse.md
@@ -1,11 +1,11 @@
# TextAnnotationsResponse
-
+Represents response containing multiple text annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**TextAnnotations**](TextAnnotations.md) | | [optional]
+**annotations** | [**TextAnnotations**](TextAnnotations.md) | Text annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/TextHorizontalAlignment.md b/docs/TextHorizontalAlignment.md
index bf8b69d..467d375 100644
--- a/docs/TextHorizontalAlignment.md
+++ b/docs/TextHorizontalAlignment.md
@@ -1,16 +1,16 @@
# TextHorizontalAlignment
-
+Describes text horizontal alignment.
## Enum
Name | Description
------------ | ------------
-**Left** |
-**Right** |
-**Center** |
-**Justify** |
-**FullJustify** |
-**None** |
+**Left** | Align to left.
+**Right** | Align to right.
+**Center** | Center alignment.
+**Justify** | Justify alignment. Text will be aligned on both left and right margins.
+**FullJustify** | Similar to 'Justify' alignment, except that the very last line will only be left-aligned in 'Justify' mode, while in 'FullJustify' mode all lines will be left- and right-aligned.
+**None** | No alignment.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/TextLine.md b/docs/TextLine.md
index 01ee626..a2f0d90 100644
--- a/docs/TextLine.md
+++ b/docs/TextLine.md
@@ -1,6 +1,6 @@
# TextLine
-A line of text to be inserted into .
+A line of text to be inserted into paragraph.
## Properties
Name | Type | Description | Notes
diff --git a/docs/TextRect.md b/docs/TextRect.md
index a56d6ec..3ca46d5 100644
--- a/docs/TextRect.md
+++ b/docs/TextRect.md
@@ -1,13 +1,13 @@
# TextRect
-Represents text DTO.
+Represents text occurrence.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**text** | **String** | | [optional]
-**page** | **Integer** | |
-**rect** | [**RectanglePdf**](RectanglePdf.md) | | [optional]
+**text** | **String** | Text of the occurrence. | [optional]
+**page** | **Integer** | Page on which the occurrence is found. |
+**rect** | [**Rectangle**](Rectangle.md) | Rectangle of the occurrence. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/TextRects.md b/docs/TextRects.md
index 7efe551..d72b9d2 100644
--- a/docs/TextRects.md
+++ b/docs/TextRects.md
@@ -1,11 +1,11 @@
# TextRects
-Represents text items DTO.
+Represents multiple text occurrences DTO.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<TextRect>**](TextRect.md) | | [optional]
+**list** | [**List<TextRect>**](TextRect.md) | The list of text occurrences. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/TextRectsResponse.md b/docs/TextRectsResponse.md
index 42949a4..6185fff 100644
--- a/docs/TextRectsResponse.md
+++ b/docs/TextRectsResponse.md
@@ -1,11 +1,11 @@
# TextRectsResponse
-
+Represents response containing multiple text occurrences info
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**textOccurences** | [**TextRects**](TextRects.md) | | [optional]
+**textOccurrences** | [**TextRects**](TextRects.md) | TextRects object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/TextReplace.md b/docs/TextReplace.md
index b2098aa..8bd2367 100644
--- a/docs/TextReplace.md
+++ b/docs/TextReplace.md
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
**newValue** | **String** | New text. |
**regex** | **Boolean** | Gets or sets a value indicating whether search text is regular expression. |
**textState** | [**TextState**](TextState.md) | Text properties of a new text. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Rectangle area where searched original text. | [optional]
+**rect** | [**Rectangle**](Rectangle.md) | Rectangle area where searched original text. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/TextReplaceListRequest.md b/docs/TextReplaceListRequest.md
index ac03f12..9d27f80 100644
--- a/docs/TextReplaceListRequest.md
+++ b/docs/TextReplaceListRequest.md
@@ -7,8 +7,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**textReplaces** | [**List<TextReplace>**](TextReplace.md) | A list of text replacement settings. |
**defaultFont** | **String** | | [optional]
-**startIndex** | **Integer** | | [optional]
-**countReplace** | **Integer** | | [optional]
+**startIndex** | **Integer** | The index of first match to be replaced. | [optional]
+**countReplace** | **Integer** | The number of matches to be replaced. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/TextReplaceResponse.md b/docs/TextReplaceResponse.md
index 1a035ac..664f5a6 100644
--- a/docs/TextReplaceResponse.md
+++ b/docs/TextReplaceResponse.md
@@ -1,11 +1,11 @@
# TextReplaceResponse
-
+Represents response containing the result of text replacement
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**matches** | **Integer** | |
+**matches** | **Integer** | Number of matches |
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/UnderlineAnnotation.md b/docs/UnderlineAnnotation.md
index 169de78..1c73cf4 100644
--- a/docs/UnderlineAnnotation.md
+++ b/docs/UnderlineAnnotation.md
@@ -5,18 +5,18 @@ Provides UnderlineAnnotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**quadPoints** | [**List<Point>**](Point.md) | Gets or sets an array of points specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of contiguous words in the text underlying the annotation. | [optional]
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
**subject** | **String** | Get the annotation subject. | [optional]
**title** | **String** | Get the annotation title. | [optional]
**richText** | **String** | Get the annotation RichText. | [optional]
+**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
**contents** | **String** | Get the annotation content. | [optional]
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
**id** | **String** | Gets ID of the annotation. | [optional]
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
**name** | **String** | Gets Name of the annotation. | [optional]
-**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
+**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
diff --git a/docs/UnderlineAnnotationResponse.md b/docs/UnderlineAnnotationResponse.md
index a987cf6..44c4b18 100644
--- a/docs/UnderlineAnnotationResponse.md
+++ b/docs/UnderlineAnnotationResponse.md
@@ -1,11 +1,11 @@
# UnderlineAnnotationResponse
-
+Represents response containing single underline annotation object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotation** | [**UnderlineAnnotation**](UnderlineAnnotation.md) | | [optional]
+**annotation** | [**UnderlineAnnotation**](UnderlineAnnotation.md) | Underline annotation object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/UnderlineAnnotations.md b/docs/UnderlineAnnotations.md
index 09b3408..74c0103 100644
--- a/docs/UnderlineAnnotations.md
+++ b/docs/UnderlineAnnotations.md
@@ -1,11 +1,11 @@
# UnderlineAnnotations
-List of annotations.
+Object representing a list of underline annotations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**list** | [**List<UnderlineAnnotation>**](UnderlineAnnotation.md) | | [optional]
+**list** | [**List<UnderlineAnnotation>**](UnderlineAnnotation.md) | List of underline annotations. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
diff --git a/docs/UnderlineAnnotationsResponse.md b/docs/UnderlineAnnotationsResponse.md
index 1516845..08c24db 100644
--- a/docs/UnderlineAnnotationsResponse.md
+++ b/docs/UnderlineAnnotationsResponse.md
@@ -1,11 +1,11 @@
# UnderlineAnnotationsResponse
-
+Represents response containing multiple underline annotation objects
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**annotations** | [**UnderlineAnnotations**](UnderlineAnnotations.md) | | [optional]
+**annotations** | [**UnderlineAnnotations**](UnderlineAnnotations.md) | Underline annotations object | [optional]
**code** | **Integer** | Response status code. |
**status** | **String** | Response status. | [optional]
diff --git a/docs/WrapMode.md b/docs/WrapMode.md
index 5ef3b37..06d199c 100644
--- a/docs/WrapMode.md
+++ b/docs/WrapMode.md
@@ -1,13 +1,13 @@
# WrapMode
-
+Defines word wrapping strategies
## Enum
Name | Description
------------ | ------------
-**NoWrap** |
-**ByWords** |
-**DiscretionaryHyphenation** |
+**NoWrap** | No wrapping is performed
+**ByWords** | Word wrapping only wraps complete words. If the complete word cannot be wrapped, attempts to use discretionary hyphenation
+**DiscretionaryHyphenation** | Discretionary hyphenation is performed. Allows breaking words in the middle.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/src/main/java/com/aspose/asposecloudpdf/api/PdfApi.java b/src/main/java/com/aspose/asposecloudpdf/api/PdfApi.java
index 383ba21..e9d830b 100644
--- a/src/main/java/com/aspose/asposecloudpdf/api/PdfApi.java
+++ b/src/main/java/com/aspose/asposecloudpdf/api/PdfApi.java
@@ -1,4 +1,4 @@
-/**
+/**
*
* Copyright (c) 2018 Aspose.PDF Cloud
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -47,6 +47,7 @@
import com.aspose.asposecloudpdf.model.CircleAnnotation;
import com.aspose.asposecloudpdf.model.CircleAnnotationResponse;
import com.aspose.asposecloudpdf.model.CircleAnnotationsResponse;
+import com.aspose.asposecloudpdf.model.DiscUsageResponse;
import com.aspose.asposecloudpdf.model.DocumentPageResponse;
import com.aspose.asposecloudpdf.model.DocumentPagesResponse;
import com.aspose.asposecloudpdf.model.DocumentPrivilege;
@@ -58,6 +59,8 @@
import com.aspose.asposecloudpdf.model.Fields;
import com.aspose.asposecloudpdf.model.FieldsResponse;
import java.io.File;
+import com.aspose.asposecloudpdf.model.FileExistResponse;
+import com.aspose.asposecloudpdf.model.FileVersionsResponse;
import com.aspose.asposecloudpdf.model.FilesResponse;
import com.aspose.asposecloudpdf.model.FreeTextAnnotation;
import com.aspose.asposecloudpdf.model.FreeTextAnnotationResponse;
@@ -99,6 +102,7 @@
import com.aspose.asposecloudpdf.model.SquigglyAnnotationResponse;
import com.aspose.asposecloudpdf.model.SquigglyAnnotationsResponse;
import com.aspose.asposecloudpdf.model.Stamp;
+import com.aspose.asposecloudpdf.model.StorageExistResponse;
import com.aspose.asposecloudpdf.model.StrikeOutAnnotation;
import com.aspose.asposecloudpdf.model.StrikeOutAnnotationResponse;
import com.aspose.asposecloudpdf.model.StrikeOutAnnotationsResponse;
@@ -752,6 +756,304 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
+ /**
+ * Build call for deleteFile
+ * @param path Path of the file including file name and extension e.g. /Folder1/file.ext (required)
+ * @param versionId File's version (optional)
+ * @param storage User's storage name (optional)
+ * @param progressListener Progress listener
+ * @param progressRequestListener Progress request listener
+ * @return Call to execute
+ * @throws ApiException If fail to serialize the request body object
+ */
+ public com.squareup.okhttp.Call deleteFileCall(String path, String versionId, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ Object localVarPostBody = null;
+
+ // create path and map variables
+ String localVarPath = "/storage/file";
+
+ List localVarQueryParams = new ArrayList();
+ List localVarCollectionQueryParams = new ArrayList();
+ if (path != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("path", path));
+ if (versionId != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("versionId", versionId));
+ if (storage != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
+
+ Map localVarHeaderParams = new HashMap();
+
+ Map localVarFormParams = new HashMap();
+
+ final String[] localVarAccepts = {
+ "application/json"
+ };
+ final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
+ if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
+
+ final String[] localVarContentTypes = {
+ "application/json"
+ };
+ final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
+ localVarHeaderParams.put("Content-Type", localVarContentType);
+
+ if(progressListener != null) {
+ apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
+ @Override
+ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException {
+ com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
+ return originalResponse.newBuilder()
+ .body(new ProgressResponseBody(originalResponse.body(), progressListener))
+ .build();
+ }
+ });
+ }
+
+ String[] localVarAuthNames = new String[] { };
+ return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
+ }
+
+ @SuppressWarnings("rawtypes")
+ private com.squareup.okhttp.Call deleteFileValidateBeforeCall(String path, String versionId, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+
+ // verify the required parameter 'path' is set
+ if (path == null) {
+ throw new ApiException("Missing the required parameter 'path' when calling deleteFile(Async)");
+ }
+
+
+ com.squareup.okhttp.Call call = deleteFileCall(path, versionId, storage, progressListener, progressRequestListener);
+ return call;
+
+ }
+
+ /**
+ * Remove a specific file
+ *
+ * @param path Path of the file including file name and extension e.g. /Folder1/file.ext (required)
+ * @param versionId File's version (optional)
+ * @param storage User's storage name (optional)
+ * @return AsposeResponse
+ * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ */
+ public AsposeResponse deleteFile(String path, String versionId, String storage) throws ApiException {
+ try
+ {
+ ApiResponse resp = deleteFileWithHttpInfo(path, versionId, storage);
+ return resp.getData();
+ }
+ catch (ApiException ex)
+ {
+ if (ex.getCode() == 401)
+ {
+ apiClient.refreshToken();
+ ApiResponse resp = deleteFileWithHttpInfo(path, versionId, storage);
+ return resp.getData();
+ }
+ throw ex;
+ }
+ }
+
+ /**
+ * Remove a specific file
+ *
+ * @param path Path of the file including file name and extension e.g. /Folder1/file.ext (required)
+ * @param versionId File's version (optional)
+ * @param storage User's storage name (optional)
+ * @return ApiResponse<AsposeResponse>
+ * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ */
+ public ApiResponse deleteFileWithHttpInfo(String path, String versionId, String storage) throws ApiException {
+ com.squareup.okhttp.Call call = deleteFileValidateBeforeCall(path, versionId, storage, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
+ return apiClient.execute(call, localVarReturnType);
+ }
+
+ /**
+ * Remove a specific file (asynchronously)
+ *
+ * @param path Path of the file including file name and extension e.g. /Folder1/file.ext (required)
+ * @param versionId File's version (optional)
+ * @param storage User's storage name (optional)
+ * @param callback The callback to be executed when the API call finishes
+ * @return The request call
+ * @throws ApiException If fail to process the API call, e.g. serializing the request body object
+ */
+ public com.squareup.okhttp.Call deleteFileAsync(String path, String versionId, String storage, final ApiCallback callback) throws ApiException {
+
+ ProgressResponseBody.ProgressListener progressListener = null;
+ ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
+
+ if (callback != null) {
+ progressListener = new ProgressResponseBody.ProgressListener() {
+ @Override
+ public void update(long bytesRead, long contentLength, boolean done) {
+ callback.onDownloadProgress(bytesRead, contentLength, done);
+ }
+ };
+
+ progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
+ @Override
+ public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
+ callback.onUploadProgress(bytesWritten, contentLength, done);
+ }
+ };
+ }
+
+ com.squareup.okhttp.Call call = deleteFileValidateBeforeCall(path, versionId, storage, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
+ apiClient.executeAsync(call, localVarReturnType, callback);
+ return call;
+ }
+ /**
+ * Build call for deleteFolder
+ * @param path Folder path e.g. /Folder1 (required)
+ * @param storage User's storage name (optional)
+ * @param recursive Remove recursivelly inner folder/files. If false and folder contains data than exception is raised. (optional, default to false)
+ * @param progressListener Progress listener
+ * @param progressRequestListener Progress request listener
+ * @return Call to execute
+ * @throws ApiException If fail to serialize the request body object
+ */
+ public com.squareup.okhttp.Call deleteFolderCall(String path, String storage, Boolean recursive, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ Object localVarPostBody = null;
+
+ // create path and map variables
+ String localVarPath = "/storage/folder";
+
+ List localVarQueryParams = new ArrayList();
+ List localVarCollectionQueryParams = new ArrayList();
+ if (path != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("path", path));
+ if (storage != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
+ if (recursive != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("recursive", recursive));
+
+ Map localVarHeaderParams = new HashMap();
+
+ Map localVarFormParams = new HashMap();
+
+ final String[] localVarAccepts = {
+ "application/json"
+ };
+ final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
+ if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
+
+ final String[] localVarContentTypes = {
+ "application/json"
+ };
+ final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
+ localVarHeaderParams.put("Content-Type", localVarContentType);
+
+ if(progressListener != null) {
+ apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
+ @Override
+ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException {
+ com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
+ return originalResponse.newBuilder()
+ .body(new ProgressResponseBody(originalResponse.body(), progressListener))
+ .build();
+ }
+ });
+ }
+
+ String[] localVarAuthNames = new String[] { };
+ return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
+ }
+
+ @SuppressWarnings("rawtypes")
+ private com.squareup.okhttp.Call deleteFolderValidateBeforeCall(String path, String storage, Boolean recursive, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+
+ // verify the required parameter 'path' is set
+ if (path == null) {
+ throw new ApiException("Missing the required parameter 'path' when calling deleteFolder(Async)");
+ }
+
+
+ com.squareup.okhttp.Call call = deleteFolderCall(path, storage, recursive, progressListener, progressRequestListener);
+ return call;
+
+ }
+
+ /**
+ * Remove a specific folder
+ *
+ * @param path Folder path e.g. /Folder1 (required)
+ * @param storage User's storage name (optional)
+ * @param recursive Remove recursivelly inner folder/files. If false and folder contains data than exception is raised. (optional, default to false)
+ * @return AsposeResponse
+ * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ */
+ public AsposeResponse deleteFolder(String path, String storage, Boolean recursive) throws ApiException {
+ try
+ {
+ ApiResponse resp = deleteFolderWithHttpInfo(path, storage, recursive);
+ return resp.getData();
+ }
+ catch (ApiException ex)
+ {
+ if (ex.getCode() == 401)
+ {
+ apiClient.refreshToken();
+ ApiResponse resp = deleteFolderWithHttpInfo(path, storage, recursive);
+ return resp.getData();
+ }
+ throw ex;
+ }
+ }
+
+ /**
+ * Remove a specific folder
+ *
+ * @param path Folder path e.g. /Folder1 (required)
+ * @param storage User's storage name (optional)
+ * @param recursive Remove recursivelly inner folder/files. If false and folder contains data than exception is raised. (optional, default to false)
+ * @return ApiResponse<AsposeResponse>
+ * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ */
+ public ApiResponse deleteFolderWithHttpInfo(String path, String storage, Boolean recursive) throws ApiException {
+ com.squareup.okhttp.Call call = deleteFolderValidateBeforeCall(path, storage, recursive, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
+ return apiClient.execute(call, localVarReturnType);
+ }
+
+ /**
+ * Remove a specific folder (asynchronously)
+ *
+ * @param path Folder path e.g. /Folder1 (required)
+ * @param storage User's storage name (optional)
+ * @param recursive Remove recursivelly inner folder/files. If false and folder contains data than exception is raised. (optional, default to false)
+ * @param callback The callback to be executed when the API call finishes
+ * @return The request call
+ * @throws ApiException If fail to process the API call, e.g. serializing the request body object
+ */
+ public com.squareup.okhttp.Call deleteFolderAsync(String path, String storage, Boolean recursive, final ApiCallback callback) throws ApiException {
+
+ ProgressResponseBody.ProgressListener progressListener = null;
+ ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
+
+ if (callback != null) {
+ progressListener = new ProgressResponseBody.ProgressListener() {
+ @Override
+ public void update(long bytesRead, long contentLength, boolean done) {
+ callback.onDownloadProgress(bytesRead, contentLength, done);
+ }
+ };
+
+ progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
+ @Override
+ public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
+ callback.onUploadProgress(bytesWritten, contentLength, done);
+ }
+ };
+ }
+
+ com.squareup.okhttp.Call call = deleteFolderValidateBeforeCall(path, storage, recursive, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
+ apiClient.executeAsync(call, localVarReturnType, callback);
+ return call;
+ }
/**
* Build call for deleteImage
* @param name The document name. (required)
@@ -2165,8 +2467,140 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
return call;
}
/**
- * Build call for getDocument
- * @param name The document name. (required)
+ * Build call for getDiscUsage
+ * @param storage User's storage name (optional)
+ * @param progressListener Progress listener
+ * @param progressRequestListener Progress request listener
+ * @return Call to execute
+ * @throws ApiException If fail to serialize the request body object
+ */
+ public com.squareup.okhttp.Call getDiscUsageCall(String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ Object localVarPostBody = null;
+
+ // create path and map variables
+ String localVarPath = "/storage/disc";
+
+ List localVarQueryParams = new ArrayList();
+ List localVarCollectionQueryParams = new ArrayList();
+ if (storage != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
+
+ Map localVarHeaderParams = new HashMap();
+
+ Map localVarFormParams = new HashMap();
+
+ final String[] localVarAccepts = {
+ "application/json"
+ };
+ final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
+ if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
+
+ final String[] localVarContentTypes = {
+ "application/json"
+ };
+ final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
+ localVarHeaderParams.put("Content-Type", localVarContentType);
+
+ if(progressListener != null) {
+ apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
+ @Override
+ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException {
+ com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
+ return originalResponse.newBuilder()
+ .body(new ProgressResponseBody(originalResponse.body(), progressListener))
+ .build();
+ }
+ });
+ }
+
+ String[] localVarAuthNames = new String[] { };
+ return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
+ }
+
+ @SuppressWarnings("rawtypes")
+ private com.squareup.okhttp.Call getDiscUsageValidateBeforeCall(String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+
+
+ com.squareup.okhttp.Call call = getDiscUsageCall(storage, progressListener, progressRequestListener);
+ return call;
+
+ }
+
+ /**
+ * Check the disk usage of the current account
+ *
+ * @param storage User's storage name (optional)
+ * @return DiscUsageResponse
+ * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ */
+ public DiscUsageResponse getDiscUsage(String storage) throws ApiException {
+ try
+ {
+ ApiResponse resp = getDiscUsageWithHttpInfo(storage);
+ return resp.getData();
+ }
+ catch (ApiException ex)
+ {
+ if (ex.getCode() == 401)
+ {
+ apiClient.refreshToken();
+ ApiResponse resp = getDiscUsageWithHttpInfo(storage);
+ return resp.getData();
+ }
+ throw ex;
+ }
+ }
+
+ /**
+ * Check the disk usage of the current account
+ *
+ * @param storage User's storage name (optional)
+ * @return ApiResponse<DiscUsageResponse>
+ * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ */
+ public ApiResponse getDiscUsageWithHttpInfo(String storage) throws ApiException {
+ com.squareup.okhttp.Call call = getDiscUsageValidateBeforeCall(storage, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
+ return apiClient.execute(call, localVarReturnType);
+ }
+
+ /**
+ * Check the disk usage of the current account (asynchronously)
+ *
+ * @param storage User's storage name (optional)
+ * @param callback The callback to be executed when the API call finishes
+ * @return The request call
+ * @throws ApiException If fail to process the API call, e.g. serializing the request body object
+ */
+ public com.squareup.okhttp.Call getDiscUsageAsync(String storage, final ApiCallback callback) throws ApiException {
+
+ ProgressResponseBody.ProgressListener progressListener = null;
+ ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
+
+ if (callback != null) {
+ progressListener = new ProgressResponseBody.ProgressListener() {
+ @Override
+ public void update(long bytesRead, long contentLength, boolean done) {
+ callback.onDownloadProgress(bytesRead, contentLength, done);
+ }
+ };
+
+ progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
+ @Override
+ public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
+ callback.onUploadProgress(bytesWritten, contentLength, done);
+ }
+ };
+ }
+
+ com.squareup.okhttp.Call call = getDiscUsageValidateBeforeCall(storage, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
+ apiClient.executeAsync(call, localVarReturnType, callback);
+ return call;
+ }
+ /**
+ * Build call for getDocument
+ * @param name The document name. (required)
* @param storage The document storage. (optional)
* @param folder The document folder. (optional)
* @param progressListener Progress listener
@@ -7874,24 +8308,27 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
return call;
}
/**
- * Build call for getLaTeXInStorageToPdf
- * @param srcPath Full source filename (ex. /folder1/folder2/template.tex) (required)
- * @param storage The document storage. (optional)
+ * Build call for getIsExist
+ * @param path File or folder path e.g. /file.ext or /Folder1 (required)
+ * @param versionId File's version (optional)
+ * @param storage User's storage name (optional)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getLaTeXInStorageToPdfCall(String srcPath, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getIsExistCall(String path, String versionId, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/pdf/create/latex";
+ String localVarPath = "/storage/exist";
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
- if (srcPath != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("srcPath", srcPath));
+ if (path != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("path", path));
+ if (versionId != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("versionId", versionId));
if (storage != null)
localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
@@ -7900,7 +8337,7 @@ public com.squareup.okhttp.Call getLaTeXInStorageToPdfCall(String srcPath, Strin
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
- "multipart/form-data"
+ "application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
@@ -7928,31 +8365,32 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getLaTeXInStorageToPdfValidateBeforeCall(String srcPath, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call getIsExistValidateBeforeCall(String path, String versionId, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
- // verify the required parameter 'srcPath' is set
- if (srcPath == null) {
- throw new ApiException("Missing the required parameter 'srcPath' when calling getLaTeXInStorageToPdf(Async)");
+ // verify the required parameter 'path' is set
+ if (path == null) {
+ throw new ApiException("Missing the required parameter 'path' when calling getIsExist(Async)");
}
- com.squareup.okhttp.Call call = getLaTeXInStorageToPdfCall(srcPath, storage, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getIsExistCall(path, versionId, storage, progressListener, progressRequestListener);
return call;
}
/**
- * Convert LaTeX file (located on storage) to PDF format and return resulting file in response.
+ * Check if a specific file or folder exists
*
- * @param srcPath Full source filename (ex. /folder1/folder2/template.tex) (required)
- * @param storage The document storage. (optional)
- * @return File
+ * @param path File or folder path e.g. /file.ext or /Folder1 (required)
+ * @param versionId File's version (optional)
+ * @param storage User's storage name (optional)
+ * @return FileExistResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public File getLaTeXInStorageToPdf(String srcPath, String storage) throws ApiException {
+ public FileExistResponse getIsExist(String path, String versionId, String storage) throws ApiException {
try
{
- ApiResponse resp = getLaTeXInStorageToPdfWithHttpInfo(srcPath, storage);
+ ApiResponse resp = getIsExistWithHttpInfo(path, versionId, storage);
return resp.getData();
}
catch (ApiException ex)
@@ -7960,7 +8398,7 @@ public File getLaTeXInStorageToPdf(String srcPath, String storage) throws ApiExc
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getLaTeXInStorageToPdfWithHttpInfo(srcPath, storage);
+ ApiResponse resp = getIsExistWithHttpInfo(path, versionId, storage);
return resp.getData();
}
throw ex;
@@ -7968,29 +8406,31 @@ public File getLaTeXInStorageToPdf(String srcPath, String storage) throws ApiExc
}
/**
- * Convert LaTeX file (located on storage) to PDF format and return resulting file in response.
+ * Check if a specific file or folder exists
*
- * @param srcPath Full source filename (ex. /folder1/folder2/template.tex) (required)
- * @param storage The document storage. (optional)
- * @return ApiResponse<File>
+ * @param path File or folder path e.g. /file.ext or /Folder1 (required)
+ * @param versionId File's version (optional)
+ * @param storage User's storage name (optional)
+ * @return ApiResponse<FileExistResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getLaTeXInStorageToPdfWithHttpInfo(String srcPath, String storage) throws ApiException {
- com.squareup.okhttp.Call call = getLaTeXInStorageToPdfValidateBeforeCall(srcPath, storage, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getIsExistWithHttpInfo(String path, String versionId, String storage) throws ApiException {
+ com.squareup.okhttp.Call call = getIsExistValidateBeforeCall(path, versionId, storage, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
- * Convert LaTeX file (located on storage) to PDF format and return resulting file in response. (asynchronously)
+ * Check if a specific file or folder exists (asynchronously)
*
- * @param srcPath Full source filename (ex. /folder1/folder2/template.tex) (required)
- * @param storage The document storage. (optional)
+ * @param path File or folder path e.g. /file.ext or /Folder1 (required)
+ * @param versionId File's version (optional)
+ * @param storage User's storage name (optional)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call getLaTeXInStorageToPdfAsync(String srcPath, String storage, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call getIsExistAsync(String path, String versionId, String storage, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -8011,36 +8451,28 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = getLaTeXInStorageToPdfValidateBeforeCall(srcPath, storage, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ com.squareup.okhttp.Call call = getIsExistValidateBeforeCall(path, versionId, storage, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
- * Build call for getLineAnnotation
- * @param name The document name. (required)
- * @param annotationId The annotation ID. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
+ * Build call for getIsStorageExist
+ * @param name Storage name (required)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getLineAnnotationCall(String name, String annotationId, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getIsStorageExistCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/pdf/{name}/annotations/line/{annotationId}"
- .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()))
- .replaceAll("\\{" + "annotationId" + "\\}", apiClient.escapeString(annotationId.toString()));
+ String localVarPath = "/storage/{name}/exist"
+ .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
- if (storage != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
- if (folder != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
Map localVarHeaderParams = new HashMap();
@@ -8075,38 +8507,30 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getLineAnnotationValidateBeforeCall(String name, String annotationId, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call getIsStorageExistValidateBeforeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'name' is set
if (name == null) {
- throw new ApiException("Missing the required parameter 'name' when calling getLineAnnotation(Async)");
- }
-
- // verify the required parameter 'annotationId' is set
- if (annotationId == null) {
- throw new ApiException("Missing the required parameter 'annotationId' when calling getLineAnnotation(Async)");
+ throw new ApiException("Missing the required parameter 'name' when calling getIsStorageExist(Async)");
}
- com.squareup.okhttp.Call call = getLineAnnotationCall(name, annotationId, storage, folder, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getIsStorageExistCall(name, progressListener, progressRequestListener);
return call;
}
/**
- * Read document page line annotation by ID.
+ * Check if storage exists
*
- * @param name The document name. (required)
- * @param annotationId The annotation ID. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
- * @return LineAnnotationResponse
+ * @param name Storage name (required)
+ * @return StorageExistResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public LineAnnotationResponse getLineAnnotation(String name, String annotationId, String storage, String folder) throws ApiException {
+ public StorageExistResponse getIsStorageExist(String name) throws ApiException {
try
{
- ApiResponse resp = getLineAnnotationWithHttpInfo(name, annotationId, storage, folder);
+ ApiResponse resp = getIsStorageExistWithHttpInfo(name);
return resp.getData();
}
catch (ApiException ex)
@@ -8114,7 +8538,7 @@ public LineAnnotationResponse getLineAnnotation(String name, String annotationId
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getLineAnnotationWithHttpInfo(name, annotationId, storage, folder);
+ ApiResponse resp = getIsStorageExistWithHttpInfo(name);
return resp.getData();
}
throw ex;
@@ -8122,33 +8546,27 @@ public LineAnnotationResponse getLineAnnotation(String name, String annotationId
}
/**
- * Read document page line annotation by ID.
+ * Check if storage exists
*
- * @param name The document name. (required)
- * @param annotationId The annotation ID. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
- * @return ApiResponse<LineAnnotationResponse>
+ * @param name Storage name (required)
+ * @return ApiResponse<StorageExistResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getLineAnnotationWithHttpInfo(String name, String annotationId, String storage, String folder) throws ApiException {
- com.squareup.okhttp.Call call = getLineAnnotationValidateBeforeCall(name, annotationId, storage, folder, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getIsStorageExistWithHttpInfo(String name) throws ApiException {
+ com.squareup.okhttp.Call call = getIsStorageExistValidateBeforeCall(name, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
- * Read document page line annotation by ID. (asynchronously)
+ * Check if storage exists (asynchronously)
*
- * @param name The document name. (required)
- * @param annotationId The annotation ID. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
+ * @param name Storage name (required)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call getLineAnnotationAsync(String name, String annotationId, String storage, String folder, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call getIsStorageExistAsync(String name, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -8169,43 +8587,39 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = getLineAnnotationValidateBeforeCall(name, annotationId, storage, folder, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ com.squareup.okhttp.Call call = getIsStorageExistValidateBeforeCall(name, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
- * Build call for getLinkAnnotation
- * @param name The document name. (required)
- * @param linkId The link ID. (required)
+ * Build call for getLaTeXInStorageToPdf
+ * @param srcPath Full source filename (ex. /folder1/folder2/template.tex) (required)
* @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getLinkAnnotationCall(String name, String linkId, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getLaTeXInStorageToPdfCall(String srcPath, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/pdf/{name}/links/{linkId}"
- .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()))
- .replaceAll("\\{" + "linkId" + "\\}", apiClient.escapeString(linkId.toString()));
+ String localVarPath = "/pdf/create/latex";
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
+ if (srcPath != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("srcPath", srcPath));
if (storage != null)
localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
- if (folder != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
- "application/json"
+ "multipart/form-data"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
@@ -8233,38 +8647,31 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getLinkAnnotationValidateBeforeCall(String name, String linkId, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
-
- // verify the required parameter 'name' is set
- if (name == null) {
- throw new ApiException("Missing the required parameter 'name' when calling getLinkAnnotation(Async)");
- }
+ private com.squareup.okhttp.Call getLaTeXInStorageToPdfValidateBeforeCall(String srcPath, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
- // verify the required parameter 'linkId' is set
- if (linkId == null) {
- throw new ApiException("Missing the required parameter 'linkId' when calling getLinkAnnotation(Async)");
+ // verify the required parameter 'srcPath' is set
+ if (srcPath == null) {
+ throw new ApiException("Missing the required parameter 'srcPath' when calling getLaTeXInStorageToPdf(Async)");
}
- com.squareup.okhttp.Call call = getLinkAnnotationCall(name, linkId, storage, folder, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getLaTeXInStorageToPdfCall(srcPath, storage, progressListener, progressRequestListener);
return call;
}
/**
- * Read document link annotation by ID.
+ * Convert LaTeX file (located on storage) to PDF format and return resulting file in response.
*
- * @param name The document name. (required)
- * @param linkId The link ID. (required)
+ * @param srcPath Full source filename (ex. /folder1/folder2/template.tex) (required)
* @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
- * @return LinkAnnotationResponse
+ * @return File
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public LinkAnnotationResponse getLinkAnnotation(String name, String linkId, String storage, String folder) throws ApiException {
+ public File getLaTeXInStorageToPdf(String srcPath, String storage) throws ApiException {
try
{
- ApiResponse resp = getLinkAnnotationWithHttpInfo(name, linkId, storage, folder);
+ ApiResponse resp = getLaTeXInStorageToPdfWithHttpInfo(srcPath, storage);
return resp.getData();
}
catch (ApiException ex)
@@ -8272,7 +8679,7 @@ public LinkAnnotationResponse getLinkAnnotation(String name, String linkId, Stri
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getLinkAnnotationWithHttpInfo(name, linkId, storage, folder);
+ ApiResponse resp = getLaTeXInStorageToPdfWithHttpInfo(srcPath, storage);
return resp.getData();
}
throw ex;
@@ -8280,33 +8687,29 @@ public LinkAnnotationResponse getLinkAnnotation(String name, String linkId, Stri
}
/**
- * Read document link annotation by ID.
+ * Convert LaTeX file (located on storage) to PDF format and return resulting file in response.
*
- * @param name The document name. (required)
- * @param linkId The link ID. (required)
+ * @param srcPath Full source filename (ex. /folder1/folder2/template.tex) (required)
* @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
- * @return ApiResponse<LinkAnnotationResponse>
+ * @return ApiResponse<File>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getLinkAnnotationWithHttpInfo(String name, String linkId, String storage, String folder) throws ApiException {
- com.squareup.okhttp.Call call = getLinkAnnotationValidateBeforeCall(name, linkId, storage, folder, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getLaTeXInStorageToPdfWithHttpInfo(String srcPath, String storage) throws ApiException {
+ com.squareup.okhttp.Call call = getLaTeXInStorageToPdfValidateBeforeCall(srcPath, storage, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
- * Read document link annotation by ID. (asynchronously)
+ * Convert LaTeX file (located on storage) to PDF format and return resulting file in response. (asynchronously)
*
- * @param name The document name. (required)
- * @param linkId The link ID. (required)
+ * @param srcPath Full source filename (ex. /folder1/folder2/template.tex) (required)
* @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call getLinkAnnotationAsync(String name, String linkId, String storage, String folder, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call getLaTeXInStorageToPdfAsync(String srcPath, String storage, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -8327,32 +8730,36 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = getLinkAnnotationValidateBeforeCall(name, linkId, storage, folder, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ com.squareup.okhttp.Call call = getLaTeXInStorageToPdfValidateBeforeCall(srcPath, storage, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
- * Build call for getListFiles
- * @param path Start with name of storage e.g. root folder '/'or some folder '/folder1/..' (optional, default to /)
- * @param storage User's storage name (optional)
+ * Build call for getLineAnnotation
+ * @param name The document name. (required)
+ * @param annotationId The annotation ID. (required)
+ * @param storage The document storage. (optional)
+ * @param folder The document folder. (optional)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getListFilesCall(String path, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getLineAnnotationCall(String name, String annotationId, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/storage/folder";
+ String localVarPath = "/pdf/{name}/annotations/line/{annotationId}"
+ .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()))
+ .replaceAll("\\{" + "annotationId" + "\\}", apiClient.escapeString(annotationId.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
- if (path != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("path", path));
if (storage != null)
localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
+ if (folder != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
Map localVarHeaderParams = new HashMap();
@@ -8387,26 +8794,38 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getListFilesValidateBeforeCall(String path, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call getLineAnnotationValidateBeforeCall(String name, String annotationId, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+
+ // verify the required parameter 'name' is set
+ if (name == null) {
+ throw new ApiException("Missing the required parameter 'name' when calling getLineAnnotation(Async)");
+ }
+
+ // verify the required parameter 'annotationId' is set
+ if (annotationId == null) {
+ throw new ApiException("Missing the required parameter 'annotationId' when calling getLineAnnotation(Async)");
+ }
- com.squareup.okhttp.Call call = getListFilesCall(path, storage, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getLineAnnotationCall(name, annotationId, storage, folder, progressListener, progressRequestListener);
return call;
}
/**
- * Get the file listing of a specific folder
+ * Read document page line annotation by ID.
*
- * @param path Start with name of storage e.g. root folder '/'or some folder '/folder1/..' (optional, default to /)
- * @param storage User's storage name (optional)
- * @return FilesResponse
+ * @param name The document name. (required)
+ * @param annotationId The annotation ID. (required)
+ * @param storage The document storage. (optional)
+ * @param folder The document folder. (optional)
+ * @return LineAnnotationResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public FilesResponse getListFiles(String path, String storage) throws ApiException {
+ public LineAnnotationResponse getLineAnnotation(String name, String annotationId, String storage, String folder) throws ApiException {
try
{
- ApiResponse resp = getListFilesWithHttpInfo(path, storage);
+ ApiResponse resp = getLineAnnotationWithHttpInfo(name, annotationId, storage, folder);
return resp.getData();
}
catch (ApiException ex)
@@ -8414,7 +8833,7 @@ public FilesResponse getListFiles(String path, String storage) throws ApiExcepti
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getListFilesWithHttpInfo(path, storage);
+ ApiResponse resp = getLineAnnotationWithHttpInfo(name, annotationId, storage, folder);
return resp.getData();
}
throw ex;
@@ -8422,29 +8841,33 @@ public FilesResponse getListFiles(String path, String storage) throws ApiExcepti
}
/**
- * Get the file listing of a specific folder
+ * Read document page line annotation by ID.
*
- * @param path Start with name of storage e.g. root folder '/'or some folder '/folder1/..' (optional, default to /)
- * @param storage User's storage name (optional)
- * @return ApiResponse<FilesResponse>
+ * @param name The document name. (required)
+ * @param annotationId The annotation ID. (required)
+ * @param storage The document storage. (optional)
+ * @param folder The document folder. (optional)
+ * @return ApiResponse<LineAnnotationResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getListFilesWithHttpInfo(String path, String storage) throws ApiException {
- com.squareup.okhttp.Call call = getListFilesValidateBeforeCall(path, storage, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getLineAnnotationWithHttpInfo(String name, String annotationId, String storage, String folder) throws ApiException {
+ com.squareup.okhttp.Call call = getLineAnnotationValidateBeforeCall(name, annotationId, storage, folder, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
- * Get the file listing of a specific folder (asynchronously)
+ * Read document page line annotation by ID. (asynchronously)
*
- * @param path Start with name of storage e.g. root folder '/'or some folder '/folder1/..' (optional, default to /)
- * @param storage User's storage name (optional)
+ * @param name The document name. (required)
+ * @param annotationId The annotation ID. (required)
+ * @param storage The document storage. (optional)
+ * @param folder The document folder. (optional)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call getListFilesAsync(String path, String storage, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call getLineAnnotationAsync(String name, String annotationId, String storage, String folder, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -8465,39 +8888,43 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = getListFilesValidateBeforeCall(path, storage, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ com.squareup.okhttp.Call call = getLineAnnotationValidateBeforeCall(name, annotationId, storage, folder, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
- * Build call for getMhtInStorageToPdf
- * @param srcPath Full source filename (ex. /folder1/folder2/template.mht) (required)
+ * Build call for getLinkAnnotation
+ * @param name The document name. (required)
+ * @param linkId The link ID. (required)
* @param storage The document storage. (optional)
+ * @param folder The document folder. (optional)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getMhtInStorageToPdfCall(String srcPath, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getLinkAnnotationCall(String name, String linkId, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/pdf/create/mht";
+ String localVarPath = "/pdf/{name}/links/{linkId}"
+ .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()))
+ .replaceAll("\\{" + "linkId" + "\\}", apiClient.escapeString(linkId.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
- if (srcPath != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("srcPath", srcPath));
if (storage != null)
localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
+ if (folder != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
- "multipart/form-data"
+ "application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
@@ -8525,31 +8952,38 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getMhtInStorageToPdfValidateBeforeCall(String srcPath, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call getLinkAnnotationValidateBeforeCall(String name, String linkId, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
- // verify the required parameter 'srcPath' is set
- if (srcPath == null) {
- throw new ApiException("Missing the required parameter 'srcPath' when calling getMhtInStorageToPdf(Async)");
+ // verify the required parameter 'name' is set
+ if (name == null) {
+ throw new ApiException("Missing the required parameter 'name' when calling getLinkAnnotation(Async)");
+ }
+
+ // verify the required parameter 'linkId' is set
+ if (linkId == null) {
+ throw new ApiException("Missing the required parameter 'linkId' when calling getLinkAnnotation(Async)");
}
- com.squareup.okhttp.Call call = getMhtInStorageToPdfCall(srcPath, storage, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getLinkAnnotationCall(name, linkId, storage, folder, progressListener, progressRequestListener);
return call;
}
/**
- * Convert MHT file (located on storage) to PDF format and return resulting file in response.
+ * Read document link annotation by ID.
*
- * @param srcPath Full source filename (ex. /folder1/folder2/template.mht) (required)
+ * @param name The document name. (required)
+ * @param linkId The link ID. (required)
* @param storage The document storage. (optional)
- * @return File
+ * @param folder The document folder. (optional)
+ * @return LinkAnnotationResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public File getMhtInStorageToPdf(String srcPath, String storage) throws ApiException {
+ public LinkAnnotationResponse getLinkAnnotation(String name, String linkId, String storage, String folder) throws ApiException {
try
{
- ApiResponse resp = getMhtInStorageToPdfWithHttpInfo(srcPath, storage);
+ ApiResponse resp = getLinkAnnotationWithHttpInfo(name, linkId, storage, folder);
return resp.getData();
}
catch (ApiException ex)
@@ -8557,7 +8991,7 @@ public File getMhtInStorageToPdf(String srcPath, String storage) throws ApiExcep
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getMhtInStorageToPdfWithHttpInfo(srcPath, storage);
+ ApiResponse resp = getLinkAnnotationWithHttpInfo(name, linkId, storage, folder);
return resp.getData();
}
throw ex;
@@ -8565,29 +8999,33 @@ public File getMhtInStorageToPdf(String srcPath, String storage) throws ApiExcep
}
/**
- * Convert MHT file (located on storage) to PDF format and return resulting file in response.
+ * Read document link annotation by ID.
*
- * @param srcPath Full source filename (ex. /folder1/folder2/template.mht) (required)
+ * @param name The document name. (required)
+ * @param linkId The link ID. (required)
* @param storage The document storage. (optional)
- * @return ApiResponse<File>
+ * @param folder The document folder. (optional)
+ * @return ApiResponse<LinkAnnotationResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getMhtInStorageToPdfWithHttpInfo(String srcPath, String storage) throws ApiException {
- com.squareup.okhttp.Call call = getMhtInStorageToPdfValidateBeforeCall(srcPath, storage, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getLinkAnnotationWithHttpInfo(String name, String linkId, String storage, String folder) throws ApiException {
+ com.squareup.okhttp.Call call = getLinkAnnotationValidateBeforeCall(name, linkId, storage, folder, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
- * Convert MHT file (located on storage) to PDF format and return resulting file in response. (asynchronously)
+ * Read document link annotation by ID. (asynchronously)
*
- * @param srcPath Full source filename (ex. /folder1/folder2/template.mht) (required)
+ * @param name The document name. (required)
+ * @param linkId The link ID. (required)
* @param storage The document storage. (optional)
+ * @param folder The document folder. (optional)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call getMhtInStorageToPdfAsync(String srcPath, String storage, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call getLinkAnnotationAsync(String name, String linkId, String storage, String folder, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -8608,36 +9046,32 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = getMhtInStorageToPdfValidateBeforeCall(srcPath, storage, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ com.squareup.okhttp.Call call = getLinkAnnotationValidateBeforeCall(name, linkId, storage, folder, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
- * Build call for getPage
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
+ * Build call for getListFileVersions
+ * @param path File path e.g. /file.ext or /Folder1/file.ext (required)
+ * @param storage User's storage name (optional)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getPageCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getListFileVersionsCall(String path, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/pdf/{name}/pages/{pageNumber}"
- .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()))
- .replaceAll("\\{" + "pageNumber" + "\\}", apiClient.escapeString(pageNumber.toString()));
+ String localVarPath = "/storage/version";
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
+ if (path != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("path", path));
if (storage != null)
localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
- if (folder != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
Map localVarHeaderParams = new HashMap();
@@ -8672,38 +9106,31 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getPageValidateBeforeCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
-
- // verify the required parameter 'name' is set
- if (name == null) {
- throw new ApiException("Missing the required parameter 'name' when calling getPage(Async)");
- }
+ private com.squareup.okhttp.Call getListFileVersionsValidateBeforeCall(String path, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
- // verify the required parameter 'pageNumber' is set
- if (pageNumber == null) {
- throw new ApiException("Missing the required parameter 'pageNumber' when calling getPage(Async)");
+ // verify the required parameter 'path' is set
+ if (path == null) {
+ throw new ApiException("Missing the required parameter 'path' when calling getListFileVersions(Async)");
}
- com.squareup.okhttp.Call call = getPageCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getListFileVersionsCall(path, storage, progressListener, progressRequestListener);
return call;
}
/**
- * Read document page info.
+ * Get the file's versions list
*
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
- * @return DocumentPageResponse
+ * @param path File path e.g. /file.ext or /Folder1/file.ext (required)
+ * @param storage User's storage name (optional)
+ * @return FileVersionsResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public DocumentPageResponse getPage(String name, Integer pageNumber, String storage, String folder) throws ApiException {
+ public FileVersionsResponse getListFileVersions(String path, String storage) throws ApiException {
try
{
- ApiResponse resp = getPageWithHttpInfo(name, pageNumber, storage, folder);
+ ApiResponse resp = getListFileVersionsWithHttpInfo(path, storage);
return resp.getData();
}
catch (ApiException ex)
@@ -8711,7 +9138,7 @@ public DocumentPageResponse getPage(String name, Integer pageNumber, String stor
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getPageWithHttpInfo(name, pageNumber, storage, folder);
+ ApiResponse resp = getListFileVersionsWithHttpInfo(path, storage);
return resp.getData();
}
throw ex;
@@ -8719,33 +9146,29 @@ public DocumentPageResponse getPage(String name, Integer pageNumber, String stor
}
/**
- * Read document page info.
+ * Get the file's versions list
*
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
- * @return ApiResponse<DocumentPageResponse>
+ * @param path File path e.g. /file.ext or /Folder1/file.ext (required)
+ * @param storage User's storage name (optional)
+ * @return ApiResponse<FileVersionsResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getPageWithHttpInfo(String name, Integer pageNumber, String storage, String folder) throws ApiException {
- com.squareup.okhttp.Call call = getPageValidateBeforeCall(name, pageNumber, storage, folder, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getListFileVersionsWithHttpInfo(String path, String storage) throws ApiException {
+ com.squareup.okhttp.Call call = getListFileVersionsValidateBeforeCall(path, storage, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
- * Read document page info. (asynchronously)
+ * Get the file's versions list (asynchronously)
*
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
+ * @param path File path e.g. /file.ext or /Folder1/file.ext (required)
+ * @param storage User's storage name (optional)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call getPageAsync(String name, Integer pageNumber, String storage, String folder, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call getListFileVersionsAsync(String path, String storage, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -8766,36 +9189,32 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = getPageValidateBeforeCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ com.squareup.okhttp.Call call = getListFileVersionsValidateBeforeCall(path, storage, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
- * Build call for getPageAnnotations
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
+ * Build call for getListFiles
+ * @param path Start with name of storage e.g. root folder '/'or some folder '/folder1/..' (optional, default to /)
+ * @param storage User's storage name (optional)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getPageAnnotationsCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getListFilesCall(String path, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/pdf/{name}/pages/{pageNumber}/annotations"
- .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()))
- .replaceAll("\\{" + "pageNumber" + "\\}", apiClient.escapeString(pageNumber.toString()));
+ String localVarPath = "/storage/folder";
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
+ if (path != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("path", path));
if (storage != null)
localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
- if (folder != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
Map localVarHeaderParams = new HashMap();
@@ -8830,38 +9249,26 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getPageAnnotationsValidateBeforeCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
-
- // verify the required parameter 'name' is set
- if (name == null) {
- throw new ApiException("Missing the required parameter 'name' when calling getPageAnnotations(Async)");
- }
-
- // verify the required parameter 'pageNumber' is set
- if (pageNumber == null) {
- throw new ApiException("Missing the required parameter 'pageNumber' when calling getPageAnnotations(Async)");
- }
+ private com.squareup.okhttp.Call getListFilesValidateBeforeCall(String path, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
- com.squareup.okhttp.Call call = getPageAnnotationsCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getListFilesCall(path, storage, progressListener, progressRequestListener);
return call;
}
/**
- * Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
+ * Get the file listing of a specific folder
*
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
- * @return AnnotationsInfoResponse
+ * @param path Start with name of storage e.g. root folder '/'or some folder '/folder1/..' (optional, default to /)
+ * @param storage User's storage name (optional)
+ * @return FilesResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public AnnotationsInfoResponse getPageAnnotations(String name, Integer pageNumber, String storage, String folder) throws ApiException {
+ public FilesResponse getListFiles(String path, String storage) throws ApiException {
try
{
- ApiResponse resp = getPageAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
+ ApiResponse resp = getListFilesWithHttpInfo(path, storage);
return resp.getData();
}
catch (ApiException ex)
@@ -8869,7 +9276,7 @@ public AnnotationsInfoResponse getPageAnnotations(String name, Integer pageNumbe
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getPageAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
+ ApiResponse resp = getListFilesWithHttpInfo(path, storage);
return resp.getData();
}
throw ex;
@@ -8877,33 +9284,29 @@ public AnnotationsInfoResponse getPageAnnotations(String name, Integer pageNumbe
}
/**
- * Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
+ * Get the file listing of a specific folder
*
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
- * @return ApiResponse<AnnotationsInfoResponse>
+ * @param path Start with name of storage e.g. root folder '/'or some folder '/folder1/..' (optional, default to /)
+ * @param storage User's storage name (optional)
+ * @return ApiResponse<FilesResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getPageAnnotationsWithHttpInfo(String name, Integer pageNumber, String storage, String folder) throws ApiException {
- com.squareup.okhttp.Call call = getPageAnnotationsValidateBeforeCall(name, pageNumber, storage, folder, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getListFilesWithHttpInfo(String path, String storage) throws ApiException {
+ com.squareup.okhttp.Call call = getListFilesValidateBeforeCall(path, storage, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
- * Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases. (asynchronously)
+ * Get the file listing of a specific folder (asynchronously)
*
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
- * @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
+ * @param path Start with name of storage e.g. root folder '/'or some folder '/folder1/..' (optional, default to /)
+ * @param storage User's storage name (optional)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call getPageAnnotationsAsync(String name, Integer pageNumber, String storage, String folder, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call getListFilesAsync(String path, String storage, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -8924,43 +9327,39 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = getPageAnnotationsValidateBeforeCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ com.squareup.okhttp.Call call = getListFilesValidateBeforeCall(path, storage, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
- * Build call for getPageCaretAnnotations
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
+ * Build call for getMhtInStorageToPdf
+ * @param srcPath Full source filename (ex. /folder1/folder2/template.mht) (required)
* @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getPageCaretAnnotationsCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getMhtInStorageToPdfCall(String srcPath, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/pdf/{name}/pages/{pageNumber}/annotations/caret"
- .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()))
- .replaceAll("\\{" + "pageNumber" + "\\}", apiClient.escapeString(pageNumber.toString()));
+ String localVarPath = "/pdf/create/mht";
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
+ if (srcPath != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("srcPath", srcPath));
if (storage != null)
localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
- if (folder != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
- "application/json"
+ "multipart/form-data"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
@@ -8988,38 +9387,31 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getPageCaretAnnotationsValidateBeforeCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
-
- // verify the required parameter 'name' is set
- if (name == null) {
- throw new ApiException("Missing the required parameter 'name' when calling getPageCaretAnnotations(Async)");
- }
+ private com.squareup.okhttp.Call getMhtInStorageToPdfValidateBeforeCall(String srcPath, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
- // verify the required parameter 'pageNumber' is set
- if (pageNumber == null) {
- throw new ApiException("Missing the required parameter 'pageNumber' when calling getPageCaretAnnotations(Async)");
+ // verify the required parameter 'srcPath' is set
+ if (srcPath == null) {
+ throw new ApiException("Missing the required parameter 'srcPath' when calling getMhtInStorageToPdf(Async)");
}
- com.squareup.okhttp.Call call = getPageCaretAnnotationsCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getMhtInStorageToPdfCall(srcPath, storage, progressListener, progressRequestListener);
return call;
}
/**
- * Read document page caret annotations.
+ * Convert MHT file (located on storage) to PDF format and return resulting file in response.
*
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
+ * @param srcPath Full source filename (ex. /folder1/folder2/template.mht) (required)
* @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
- * @return CaretAnnotationsResponse
+ * @return File
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public CaretAnnotationsResponse getPageCaretAnnotations(String name, Integer pageNumber, String storage, String folder) throws ApiException {
+ public File getMhtInStorageToPdf(String srcPath, String storage) throws ApiException {
try
{
- ApiResponse resp = getPageCaretAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
+ ApiResponse resp = getMhtInStorageToPdfWithHttpInfo(srcPath, storage);
return resp.getData();
}
catch (ApiException ex)
@@ -9027,7 +9419,7 @@ public CaretAnnotationsResponse getPageCaretAnnotations(String name, Integer pag
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getPageCaretAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
+ ApiResponse resp = getMhtInStorageToPdfWithHttpInfo(srcPath, storage);
return resp.getData();
}
throw ex;
@@ -9035,33 +9427,29 @@ public CaretAnnotationsResponse getPageCaretAnnotations(String name, Integer pag
}
/**
- * Read document page caret annotations.
+ * Convert MHT file (located on storage) to PDF format and return resulting file in response.
*
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
+ * @param srcPath Full source filename (ex. /folder1/folder2/template.mht) (required)
* @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
- * @return ApiResponse<CaretAnnotationsResponse>
+ * @return ApiResponse<File>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getPageCaretAnnotationsWithHttpInfo(String name, Integer pageNumber, String storage, String folder) throws ApiException {
- com.squareup.okhttp.Call call = getPageCaretAnnotationsValidateBeforeCall(name, pageNumber, storage, folder, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getMhtInStorageToPdfWithHttpInfo(String srcPath, String storage) throws ApiException {
+ com.squareup.okhttp.Call call = getMhtInStorageToPdfValidateBeforeCall(srcPath, storage, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
- * Read document page caret annotations. (asynchronously)
+ * Convert MHT file (located on storage) to PDF format and return resulting file in response. (asynchronously)
*
- * @param name The document name. (required)
- * @param pageNumber The page number. (required)
+ * @param srcPath Full source filename (ex. /folder1/folder2/template.mht) (required)
* @param storage The document storage. (optional)
- * @param folder The document folder. (optional)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call getPageCaretAnnotationsAsync(String name, Integer pageNumber, String storage, String folder, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call getMhtInStorageToPdfAsync(String srcPath, String storage, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -9082,13 +9470,13 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = getPageCaretAnnotationsValidateBeforeCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ com.squareup.okhttp.Call call = getMhtInStorageToPdfValidateBeforeCall(srcPath, storage, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
- * Build call for getPageCircleAnnotations
+ * Build call for getPage
* @param name The document name. (required)
* @param pageNumber The page number. (required)
* @param storage The document storage. (optional)
@@ -9098,11 +9486,11 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getPageCircleAnnotationsCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getPageCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/pdf/{name}/pages/{pageNumber}/annotations/circle"
+ String localVarPath = "/pdf/{name}/pages/{pageNumber}"
.replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()))
.replaceAll("\\{" + "pageNumber" + "\\}", apiClient.escapeString(pageNumber.toString()));
@@ -9146,38 +9534,38 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getPageCircleAnnotationsValidateBeforeCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call getPageValidateBeforeCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'name' is set
if (name == null) {
- throw new ApiException("Missing the required parameter 'name' when calling getPageCircleAnnotations(Async)");
+ throw new ApiException("Missing the required parameter 'name' when calling getPage(Async)");
}
// verify the required parameter 'pageNumber' is set
if (pageNumber == null) {
- throw new ApiException("Missing the required parameter 'pageNumber' when calling getPageCircleAnnotations(Async)");
+ throw new ApiException("Missing the required parameter 'pageNumber' when calling getPage(Async)");
}
- com.squareup.okhttp.Call call = getPageCircleAnnotationsCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getPageCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
return call;
}
/**
- * Read document page circle annotations.
+ * Read document page info.
*
* @param name The document name. (required)
* @param pageNumber The page number. (required)
* @param storage The document storage. (optional)
* @param folder The document folder. (optional)
- * @return CircleAnnotationsResponse
+ * @return DocumentPageResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public CircleAnnotationsResponse getPageCircleAnnotations(String name, Integer pageNumber, String storage, String folder) throws ApiException {
+ public DocumentPageResponse getPage(String name, Integer pageNumber, String storage, String folder) throws ApiException {
try
{
- ApiResponse resp = getPageCircleAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
+ ApiResponse resp = getPageWithHttpInfo(name, pageNumber, storage, folder);
return resp.getData();
}
catch (ApiException ex)
@@ -9185,7 +9573,7 @@ public CircleAnnotationsResponse getPageCircleAnnotations(String name, Integer p
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getPageCircleAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
+ ApiResponse resp = getPageWithHttpInfo(name, pageNumber, storage, folder);
return resp.getData();
}
throw ex;
@@ -9193,23 +9581,23 @@ public CircleAnnotationsResponse getPageCircleAnnotations(String name, Integer p
}
/**
- * Read document page circle annotations.
+ * Read document page info.
*
* @param name The document name. (required)
* @param pageNumber The page number. (required)
* @param storage The document storage. (optional)
* @param folder The document folder. (optional)
- * @return ApiResponse<CircleAnnotationsResponse>
+ * @return ApiResponse<DocumentPageResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getPageCircleAnnotationsWithHttpInfo(String name, Integer pageNumber, String storage, String folder) throws ApiException {
- com.squareup.okhttp.Call call = getPageCircleAnnotationsValidateBeforeCall(name, pageNumber, storage, folder, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getPageWithHttpInfo(String name, Integer pageNumber, String storage, String folder) throws ApiException {
+ com.squareup.okhttp.Call call = getPageValidateBeforeCall(name, pageNumber, storage, folder, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
- * Read document page circle annotations. (asynchronously)
+ * Read document page info. (asynchronously)
*
* @param name The document name. (required)
* @param pageNumber The page number. (required)
@@ -9219,7 +9607,7 @@ public ApiResponse getPageCircleAnnotationsWithHttpIn
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call getPageCircleAnnotationsAsync(String name, Integer pageNumber, String storage, String folder, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call getPageAsync(String name, Integer pageNumber, String storage, String folder, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -9240,42 +9628,36 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = getPageCircleAnnotationsValidateBeforeCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ com.squareup.okhttp.Call call = getPageValidateBeforeCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
- * Build call for getPageConvertToBmp
+ * Build call for getPageAnnotations
* @param name The document name. (required)
* @param pageNumber The page number. (required)
- * @param width The converted image width. (optional)
- * @param height The converted image height. (optional)
- * @param folder The document folder. (optional)
* @param storage The document storage. (optional)
+ * @param folder The document folder. (optional)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getPageConvertToBmpCall(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getPageAnnotationsCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/pdf/{name}/pages/{pageNumber}/convert/bmp"
+ String localVarPath = "/pdf/{name}/pages/{pageNumber}/annotations"
.replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()))
.replaceAll("\\{" + "pageNumber" + "\\}", apiClient.escapeString(pageNumber.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
- if (width != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("width", width));
- if (height != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("height", height));
- if (folder != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
if (storage != null)
localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
+ if (folder != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
Map localVarHeaderParams = new HashMap();
@@ -9310,40 +9692,38 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getPageConvertToBmpValidateBeforeCall(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call getPageAnnotationsValidateBeforeCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'name' is set
if (name == null) {
- throw new ApiException("Missing the required parameter 'name' when calling getPageConvertToBmp(Async)");
+ throw new ApiException("Missing the required parameter 'name' when calling getPageAnnotations(Async)");
}
// verify the required parameter 'pageNumber' is set
if (pageNumber == null) {
- throw new ApiException("Missing the required parameter 'pageNumber' when calling getPageConvertToBmp(Async)");
+ throw new ApiException("Missing the required parameter 'pageNumber' when calling getPageAnnotations(Async)");
}
- com.squareup.okhttp.Call call = getPageConvertToBmpCall(name, pageNumber, width, height, folder, storage, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getPageAnnotationsCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
return call;
}
/**
- * Convert document page to Bmp image and return resulting file in response.
+ * Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
*
* @param name The document name. (required)
* @param pageNumber The page number. (required)
- * @param width The converted image width. (optional)
- * @param height The converted image height. (optional)
- * @param folder The document folder. (optional)
* @param storage The document storage. (optional)
- * @return File
+ * @param folder The document folder. (optional)
+ * @return AnnotationsInfoResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public File getPageConvertToBmp(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage) throws ApiException {
+ public AnnotationsInfoResponse getPageAnnotations(String name, Integer pageNumber, String storage, String folder) throws ApiException {
try
{
- ApiResponse resp = getPageConvertToBmpWithHttpInfo(name, pageNumber, width, height, folder, storage);
+ ApiResponse resp = getPageAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
return resp.getData();
}
catch (ApiException ex)
@@ -9351,7 +9731,7 @@ public File getPageConvertToBmp(String name, Integer pageNumber, Integer width,
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getPageConvertToBmpWithHttpInfo(name, pageNumber, width, height, folder, storage);
+ ApiResponse resp = getPageAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
return resp.getData();
}
throw ex;
@@ -9359,37 +9739,33 @@ public File getPageConvertToBmp(String name, Integer pageNumber, Integer width,
}
/**
- * Convert document page to Bmp image and return resulting file in response.
+ * Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
*
* @param name The document name. (required)
* @param pageNumber The page number. (required)
- * @param width The converted image width. (optional)
- * @param height The converted image height. (optional)
- * @param folder The document folder. (optional)
* @param storage The document storage. (optional)
- * @return ApiResponse<File>
+ * @param folder The document folder. (optional)
+ * @return ApiResponse<AnnotationsInfoResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getPageConvertToBmpWithHttpInfo(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage) throws ApiException {
- com.squareup.okhttp.Call call = getPageConvertToBmpValidateBeforeCall(name, pageNumber, width, height, folder, storage, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getPageAnnotationsWithHttpInfo(String name, Integer pageNumber, String storage, String folder) throws ApiException {
+ com.squareup.okhttp.Call call = getPageAnnotationsValidateBeforeCall(name, pageNumber, storage, folder, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
- * Convert document page to Bmp image and return resulting file in response. (asynchronously)
+ * Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases. (asynchronously)
*
* @param name The document name. (required)
* @param pageNumber The page number. (required)
- * @param width The converted image width. (optional)
- * @param height The converted image height. (optional)
- * @param folder The document folder. (optional)
* @param storage The document storage. (optional)
+ * @param folder The document folder. (optional)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call getPageConvertToBmpAsync(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call getPageAnnotationsAsync(String name, Integer pageNumber, String storage, String folder, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -9410,42 +9786,36 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = getPageConvertToBmpValidateBeforeCall(name, pageNumber, width, height, folder, storage, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ com.squareup.okhttp.Call call = getPageAnnotationsValidateBeforeCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
- * Build call for getPageConvertToEmf
+ * Build call for getPageCaretAnnotations
* @param name The document name. (required)
* @param pageNumber The page number. (required)
- * @param width The converted image width. (optional)
- * @param height The converted image height. (optional)
- * @param folder The document folder. (optional)
* @param storage The document storage. (optional)
+ * @param folder The document folder. (optional)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getPageConvertToEmfCall(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getPageCaretAnnotationsCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/pdf/{name}/pages/{pageNumber}/convert/emf"
+ String localVarPath = "/pdf/{name}/pages/{pageNumber}/annotations/caret"
.replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()))
.replaceAll("\\{" + "pageNumber" + "\\}", apiClient.escapeString(pageNumber.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
- if (width != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("width", width));
- if (height != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("height", height));
- if (folder != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
if (storage != null)
localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
+ if (folder != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
Map localVarHeaderParams = new HashMap();
@@ -9480,40 +9850,38 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getPageConvertToEmfValidateBeforeCall(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call getPageCaretAnnotationsValidateBeforeCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'name' is set
if (name == null) {
- throw new ApiException("Missing the required parameter 'name' when calling getPageConvertToEmf(Async)");
+ throw new ApiException("Missing the required parameter 'name' when calling getPageCaretAnnotations(Async)");
}
// verify the required parameter 'pageNumber' is set
if (pageNumber == null) {
- throw new ApiException("Missing the required parameter 'pageNumber' when calling getPageConvertToEmf(Async)");
+ throw new ApiException("Missing the required parameter 'pageNumber' when calling getPageCaretAnnotations(Async)");
}
- com.squareup.okhttp.Call call = getPageConvertToEmfCall(name, pageNumber, width, height, folder, storage, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getPageCaretAnnotationsCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
return call;
}
/**
- * Convert document page to Emf image and return resulting file in response.
+ * Read document page caret annotations.
*
* @param name The document name. (required)
* @param pageNumber The page number. (required)
- * @param width The converted image width. (optional)
- * @param height The converted image height. (optional)
- * @param folder The document folder. (optional)
* @param storage The document storage. (optional)
- * @return File
+ * @param folder The document folder. (optional)
+ * @return CaretAnnotationsResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public File getPageConvertToEmf(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage) throws ApiException {
+ public CaretAnnotationsResponse getPageCaretAnnotations(String name, Integer pageNumber, String storage, String folder) throws ApiException {
try
{
- ApiResponse resp = getPageConvertToEmfWithHttpInfo(name, pageNumber, width, height, folder, storage);
+ ApiResponse resp = getPageCaretAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
return resp.getData();
}
catch (ApiException ex)
@@ -9521,7 +9889,7 @@ public File getPageConvertToEmf(String name, Integer pageNumber, Integer width,
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getPageConvertToEmfWithHttpInfo(name, pageNumber, width, height, folder, storage);
+ ApiResponse resp = getPageCaretAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
return resp.getData();
}
throw ex;
@@ -9529,37 +9897,33 @@ public File getPageConvertToEmf(String name, Integer pageNumber, Integer width,
}
/**
- * Convert document page to Emf image and return resulting file in response.
+ * Read document page caret annotations.
*
* @param name The document name. (required)
* @param pageNumber The page number. (required)
- * @param width The converted image width. (optional)
- * @param height The converted image height. (optional)
- * @param folder The document folder. (optional)
* @param storage The document storage. (optional)
- * @return ApiResponse<File>
+ * @param folder The document folder. (optional)
+ * @return ApiResponse<CaretAnnotationsResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getPageConvertToEmfWithHttpInfo(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage) throws ApiException {
- com.squareup.okhttp.Call call = getPageConvertToEmfValidateBeforeCall(name, pageNumber, width, height, folder, storage, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getPageCaretAnnotationsWithHttpInfo(String name, Integer pageNumber, String storage, String folder) throws ApiException {
+ com.squareup.okhttp.Call call = getPageCaretAnnotationsValidateBeforeCall(name, pageNumber, storage, folder, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
- * Convert document page to Emf image and return resulting file in response. (asynchronously)
+ * Read document page caret annotations. (asynchronously)
*
* @param name The document name. (required)
* @param pageNumber The page number. (required)
- * @param width The converted image width. (optional)
- * @param height The converted image height. (optional)
- * @param folder The document folder. (optional)
* @param storage The document storage. (optional)
+ * @param folder The document folder. (optional)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call getPageConvertToEmfAsync(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call getPageCaretAnnotationsAsync(String name, Integer pageNumber, String storage, String folder, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -9580,42 +9944,36 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = getPageConvertToEmfValidateBeforeCall(name, pageNumber, width, height, folder, storage, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ com.squareup.okhttp.Call call = getPageCaretAnnotationsValidateBeforeCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
- * Build call for getPageConvertToGif
+ * Build call for getPageCircleAnnotations
* @param name The document name. (required)
* @param pageNumber The page number. (required)
- * @param width The converted image width. (optional)
- * @param height The converted image height. (optional)
- * @param folder The document folder. (optional)
* @param storage The document storage. (optional)
+ * @param folder The document folder. (optional)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call getPageConvertToGifCall(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call getPageCircleAnnotationsCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
- String localVarPath = "/pdf/{name}/pages/{pageNumber}/convert/gif"
+ String localVarPath = "/pdf/{name}/pages/{pageNumber}/annotations/circle"
.replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString()))
.replaceAll("\\{" + "pageNumber" + "\\}", apiClient.escapeString(pageNumber.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
- if (width != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("width", width));
- if (height != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("height", height));
- if (folder != null)
- localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
if (storage != null)
localVarQueryParams.addAll(apiClient.parameterToPair("storage", storage));
+ if (folder != null)
+ localVarQueryParams.addAll(apiClient.parameterToPair("folder", folder));
Map localVarHeaderParams = new HashMap();
@@ -9650,40 +10008,38 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call getPageConvertToGifValidateBeforeCall(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call getPageCircleAnnotationsValidateBeforeCall(String name, Integer pageNumber, String storage, String folder, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'name' is set
if (name == null) {
- throw new ApiException("Missing the required parameter 'name' when calling getPageConvertToGif(Async)");
+ throw new ApiException("Missing the required parameter 'name' when calling getPageCircleAnnotations(Async)");
}
// verify the required parameter 'pageNumber' is set
if (pageNumber == null) {
- throw new ApiException("Missing the required parameter 'pageNumber' when calling getPageConvertToGif(Async)");
+ throw new ApiException("Missing the required parameter 'pageNumber' when calling getPageCircleAnnotations(Async)");
}
- com.squareup.okhttp.Call call = getPageConvertToGifCall(name, pageNumber, width, height, folder, storage, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = getPageCircleAnnotationsCall(name, pageNumber, storage, folder, progressListener, progressRequestListener);
return call;
}
/**
- * Convert document page to Gif image and return resulting file in response.
+ * Read document page circle annotations.
*
* @param name The document name. (required)
* @param pageNumber The page number. (required)
- * @param width The converted image width. (optional)
- * @param height The converted image height. (optional)
- * @param folder The document folder. (optional)
* @param storage The document storage. (optional)
- * @return File
+ * @param folder The document folder. (optional)
+ * @return CircleAnnotationsResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public File getPageConvertToGif(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage) throws ApiException {
+ public CircleAnnotationsResponse getPageCircleAnnotations(String name, Integer pageNumber, String storage, String folder) throws ApiException {
try
{
- ApiResponse resp = getPageConvertToGifWithHttpInfo(name, pageNumber, width, height, folder, storage);
+ ApiResponse resp = getPageCircleAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
return resp.getData();
}
catch (ApiException ex)
@@ -9691,7 +10047,7 @@ public File getPageConvertToGif(String name, Integer pageNumber, Integer width,
if (ex.getCode() == 401)
{
apiClient.refreshToken();
- ApiResponse resp = getPageConvertToGifWithHttpInfo(name, pageNumber, width, height, folder, storage);
+ ApiResponse resp = getPageCircleAnnotationsWithHttpInfo(name, pageNumber, storage, folder);
return resp.getData();
}
throw ex;
@@ -9699,37 +10055,33 @@ public File getPageConvertToGif(String name, Integer pageNumber, Integer width,
}
/**
- * Convert document page to Gif image and return resulting file in response.
+ * Read document page circle annotations.
*
* @param name The document name. (required)
* @param pageNumber The page number. (required)
- * @param width The converted image width. (optional)
- * @param height The converted image height. (optional)
- * @param folder The document folder. (optional)
* @param storage The document storage. (optional)
- * @return ApiResponse<File>
+ * @param folder The document folder. (optional)
+ * @return ApiResponse<CircleAnnotationsResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse getPageConvertToGifWithHttpInfo(String name, Integer pageNumber, Integer width, Integer height, String folder, String storage) throws ApiException {
- com.squareup.okhttp.Call call = getPageConvertToGifValidateBeforeCall(name, pageNumber, width, height, folder, storage, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ public ApiResponse getPageCircleAnnotationsWithHttpInfo(String name, Integer pageNumber, String storage, String folder) throws ApiException {
+ com.squareup.okhttp.Call call = getPageCircleAnnotationsValidateBeforeCall(name, pageNumber, storage, folder, null, null);
+ Type localVarReturnType = new TypeToken