Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 54 additions & 25 deletions README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.aspose'
version = '19.5.0'
version = '19.7.0'

buildscript {
repositories {
Expand Down Expand Up @@ -71,7 +71,7 @@ dependencies {
publish {
groupId = 'com.aspose'
artifactId = 'aspose-cloud-pdf'
publishVersion = '19.5.0'
publishVersion = '19.7.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'
Expand Down
2 changes: 1 addition & 1 deletion docs/Annotation.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Name | Type | Description | Notes
**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** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. | [optional]
**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]
Expand Down
4 changes: 2 additions & 2 deletions docs/AnnotationInfo.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ Provides annotation.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**annotationType** | [**AnnotationType**](AnnotationType.md) | Gets annotation type. |
**annotationType** | [**AnnotationType**](AnnotationType.md) | Gets annotation type. | [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** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. | [optional]
**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]
Expand Down
2 changes: 1 addition & 1 deletion docs/Attachment.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Name | Type | Description | Notes
**name** | **String** | Gets the name of the attachment. | [optional]
**creationDate** | **String** | The date and time when the embedded file was created. | [optional]
**modificationDate** | **String** | The date and time when the embedded file was last modified. | [optional]
**size** | **Integer** | The size of the uncompressed embedded file, in bytes. |
**size** | **Integer** | The size of the uncompressed embedded file, in bytes. | [optional]
**checkSum** | **String** | A 16-byte string that is the checksum of the bytes of the uncompressed embedded file. The checksum is calculated by applying the standard MD5 message-digest algorithm to the bytes of the embedded file stream. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]

Expand Down
29 changes: 29 additions & 0 deletions docs/Bookmark.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

# Bookmark
Provides link to bookmark.

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**title** | **String** | Get the Title; | [optional]
**italic** | **Boolean** | Is bookmark italic. | [optional]
**bold** | **Boolean** | Is bookmark bold. | [optional]
**color** | [**Color**](Color.md) | Get the color | [optional]
**action** | **String** | Gets or sets the action bound with the bookmark. If PageNumber is presented the action can not be specified. The action type includes: "GoTo", "GoToR", "Launch", "Named". | [optional]
**level** | **Integer** | Gets or sets bookmark's hierarchy level. | [optional]
**destination** | **String** | Gets or sets bookmark's destination page. Required if action is set as string.Empty. | [optional]
**pageDisplay** | **String** | Gets or sets the type of display bookmark's destination page. | [optional]
**pageDisplay_Bottom** | **Integer** | Gets or sets the bottom coordinate of page display. | [optional]
**pageDisplay_Left** | **Integer** | Gets or sets the left coordinate of page display. | [optional]
**pageDisplay_Right** | **Integer** | Gets or sets the right coordinate of page display. | [optional]
**pageDisplay_Top** | **Integer** | Gets or sets the top coordinate of page display. | [optional]
**pageDisplay_Zoom** | **Integer** | Gets or sets the zoom factor of page display. | [optional]
**pageNumber** | **Integer** | Gets or sets the number of bookmark's destination page. | [optional]
**remoteFile** | **String** | Gets or sets the file (path) which is required for "GoToR" action of bookmark. | [optional]
**bookmarks** | [**Bookmarks**](Bookmarks.md) | The children bookmarks. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [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)


15 changes: 15 additions & 0 deletions docs/BookmarkResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

# BookmarkResponse
Represents response containing single bookmark info

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**bookmark** | [**Bookmark**](Bookmark.md) | Bookmark object | [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)


14 changes: 14 additions & 0 deletions docs/Bookmarks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

# Bookmarks
Represents list of bookmark.

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**list** | [**List<Bookmark>**](Bookmark.md) | List of bookmarks. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [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)


15 changes: 15 additions & 0 deletions docs/BookmarksResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

# BookmarksResponse
Represents response containing multiple bookmarks info

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**bookmarks** | [**Bookmarks**](Bookmarks.md) | Bookmarks object | [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)


2 changes: 1 addition & 1 deletion docs/CaretAnnotation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Name | Type | Description | Notes
**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** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. | [optional]
**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]
Expand Down
2 changes: 1 addition & 1 deletion docs/CellRecognized.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**textRects** | [**TextRects**](TextRects.md) | Gets collection of objects that describes text containing in the cell | [optional]
**textRects** | [**TextRects**](TextRects.md) | Gets collection of TextRect objects that describes text containing in the cell | [optional]
**rectangle** | [**Rectangle**](Rectangle.md) | Gets rectangle that describes position of the cell on page | [optional]


Expand Down
2 changes: 1 addition & 1 deletion docs/CircleAnnotation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Name | Type | Description | Notes
**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** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. | [optional]
**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]
Expand Down
2 changes: 1 addition & 1 deletion docs/CommonFigureAnnotation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Name | Type | Description | Notes
**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** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. | [optional]
**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]
Expand Down
6 changes: 3 additions & 3 deletions docs/DiscUsage.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

# DiscUsage

Class for disc space information.

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**usedSize** | **Integer** | |
**totalSize** | **Integer** | |
**usedSize** | **Integer** | Application used disc space. |
**totalSize** | **Integer** | Total disc space. |


[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/DocumentPrivilege.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# DocumentPrivilege
Represents the privileges for accessing Pdf file./>.
Represents the privileges for accessing Pdf file.

## Properties
Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/DocumentProperty.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | Pame of the property. | [optional]
**value** | **String** | Property value. | [optional]
**builtIn** | **Boolean** | Value indicating whether it is a built-in property. |
**builtIn** | **Boolean** | Value indicating whether it is a built-in property. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]


Expand Down
16 changes: 16 additions & 0 deletions docs/Error.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

# Error
Error

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**code** | **String** | Code | [optional]
**message** | **String** | Message | [optional]
**description** | **String** | Description | [optional]
**innerError** | [**ErrorDetails**](ErrorDetails.md) | Inner Error | [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)


14 changes: 14 additions & 0 deletions docs/ErrorDetails.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

# ErrorDetails
The error details

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**requestId** | **String** | The request id | [optional]
**date** | **String** | Date |


[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


2 changes: 1 addition & 1 deletion docs/Field.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Name | Type | Description | Notes
**selectedItems** | **List<Integer>** | Selected items. | [optional]
**type** | [**FieldType**](FieldType.md) | Field type. | [optional]
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
**values** | **List<String>** | Field values. |
**values** | **List<String>** | Field values. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]


Expand Down
2 changes: 1 addition & 1 deletion docs/Fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Represents list of form fields.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**list** | [**List<Field>**](Field.md) | List of form fields. |
**list** | [**List<Field>**](Field.md) | List of form fields. | [optional]
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]


Expand Down
2 changes: 1 addition & 1 deletion docs/FileAttachmentAnnotation.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Name | Type | Description | Notes
**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** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. | [optional]
**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]
Expand Down
16 changes: 8 additions & 8 deletions docs/FileVersion.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@

# FileVersion

File Version

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**versionId** | **String** | | [optional]
**isLatest** | **Boolean** | |
**name** | **String** | | [optional]
**isFolder** | **Boolean** | |
**modifiedDate** | **String** | | [optional]
**size** | **Integer** | |
**path** | **String** | | [optional]
**versionId** | **String** | File Version ID. | [optional]
**isLatest** | **Boolean** | Specifies whether the file is (true) or is not (false) the latest version of an file. | [optional]
**name** | **String** | File or folder name. | [optional]
**isFolder** | **Boolean** | True if it is a folder. |
**modifiedDate** | **String** | File or folder last modified DateTime. | [optional]
**size** | **Integer** | File or folder size. |
**path** | **String** | File or folder path. | [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)
Expand Down
13 changes: 13 additions & 0 deletions docs/FileVersions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

# FileVersions
File versions FileVersion.

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**value** | [**List<FileVersion>**](FileVersion.md) | File versions FileVersion. | [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)


13 changes: 13 additions & 0 deletions docs/FilesList.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

# FilesList
Files list

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**value** | [**List<StorageFile>**](StorageFile.md) | Files and folders contained by folder StorageFile. | [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)


14 changes: 14 additions & 0 deletions docs/FilesUploadResult.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

# FilesUploadResult
File upload result

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**uploaded** | **List<String>** | List of uploaded file names | [optional]
**errors** | [**List<Error>**](Error.md) | List of errors. | [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)


4 changes: 2 additions & 2 deletions docs/FreeTextAnnotation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Name | Type | Description | Notes
**justification** | [**Justification**](Justification.md) | Gets Justification of the annotation. | [optional]
**intent** | [**FreeTextIntent**](FreeTextIntent.md) | Gets or sets the intent of the free text annotation. | [optional]
**rotate** | [**Rotation**](Rotation.md) | Angle of annotation rotation. | [optional]
**textStyle** | [**TextStyle**](TextStyle.md) | Text style of the annotation. |
**textStyle** | [**TextStyle**](TextStyle.md) | Text style of 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]
Expand All @@ -19,7 +19,7 @@ Name | Type | Description | Notes
**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** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. | [optional]
**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]
Expand Down
4 changes: 2 additions & 2 deletions docs/GraphInfo.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ Represents graphics info.
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**lineWidth** | **Double** | Gets or sets a float value that indicates the line width of the graph. | [optional]
**color** | [**Color**](Color.md) | Gets or sets a object that indicates the color of the graph. | [optional]
**color** | [**Color**](Color.md) | Gets or sets a Color object that indicates the color of the graph. | [optional]
**dashArray** | **List<Integer>** | Gets or sets a dash array. | [optional]
**dashPhase** | **Integer** | Gets or sets a dash phase. | [optional]
**fillColor** | [**Color**](Color.md) | Gets or sets a object that indicates the fill color of the graph. | [optional]
**fillColor** | [**Color**](Color.md) | Gets or sets a Color object that indicates the fill color of the graph. | [optional]
**isDoubled** | **Boolean** | Gets or sets is border doubled. | [optional]
**skewAngleX** | **Double** | Gets or sets a float value that indicates the skew angle of the x-coordinate when transforming a coordinate system. | [optional]
**skewAngleY** | **Double** | Gets or sets a float value that indicates the skew angle of the y-coordinate when transforming a coordinate system. | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/HighlightAnnotation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Name | Type | Description | Notes
**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** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. | [optional]
**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]
Expand Down
Loading