Skip to content

Commit b613bbb

Browse files
Merge pull request #23 from kaferi/master
Update to v19.7
2 parents 9f11307 + e5227cb commit b613bbb

File tree

174 files changed

+24318
-16911
lines changed

Some content is hidden

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

174 files changed

+24318
-16911
lines changed

README.md

Lines changed: 54 additions & 25 deletions
Large diffs are not rendered by default.

sdk/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ apply plugin: 'idea'
2020
apply plugin: 'eclipse'
2121

2222
group = 'com.aspose'
23-
version = '19.5.0'
23+
version = '19.7.0'
2424

2525
buildscript {
2626
repositories {
@@ -96,7 +96,7 @@ dependencies {
9696
publish {
9797
groupId = 'com.aspose'
9898
artifactId = 'aspose-cloud-pdf-android'
99-
publishVersion = '19.5.0'
99+
publishVersion = '19.7.0'
100100
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.'
101101
licences = ['MIT']
102102
website = 'https://products.aspose.cloud/pdf/cloud'

sdk/docs/Annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
1111
**id** | **String** | Gets ID of the annotation. | [optional]
1212
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
1313
**name** | **String** | Gets Name of the annotation. | [optional]
14-
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
14+
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. | [optional]
1515
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
1616
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
1717
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]

sdk/docs/AnnotationInfo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ Provides annotation.
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**annotationType** | [**AnnotationType**](AnnotationType.md) | Gets annotation type. |
8+
**annotationType** | [**AnnotationType**](AnnotationType.md) | Gets annotation type. | [optional]
99
**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
1010
**contents** | **String** | Get the annotation content. | [optional]
1111
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
1212
**id** | **String** | Gets ID of the annotation. | [optional]
1313
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
1414
**name** | **String** | Gets Name of the annotation. | [optional]
15-
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
15+
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. | [optional]
1616
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
1717
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
1818
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]

sdk/docs/Attachment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
1010
**name** | **String** | Gets the name of the attachment. | [optional]
1111
**creationDate** | **String** | The date and time when the embedded file was created. | [optional]
1212
**modificationDate** | **String** | The date and time when the embedded file was last modified. | [optional]
13-
**size** | **Integer** | The size of the uncompressed embedded file, in bytes. |
13+
**size** | **Integer** | The size of the uncompressed embedded file, in bytes. | [optional]
1414
**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]
1515
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
1616

sdk/docs/Bookmark.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
# Bookmark
3+
Provides link to bookmark.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**title** | **String** | Get the Title; | [optional]
9+
**italic** | **Boolean** | Is bookmark italic. | [optional]
10+
**bold** | **Boolean** | Is bookmark bold. | [optional]
11+
**color** | [**Color**](Color.md) | Get the color | [optional]
12+
**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]
13+
**level** | **Integer** | Gets or sets bookmark's hierarchy level. | [optional]
14+
**destination** | **String** | Gets or sets bookmark's destination page. Required if action is set as string.Empty. | [optional]
15+
**pageDisplay** | **String** | Gets or sets the type of display bookmark's destination page. | [optional]
16+
**pageDisplay_Bottom** | **Integer** | Gets or sets the bottom coordinate of page display. | [optional]
17+
**pageDisplay_Left** | **Integer** | Gets or sets the left coordinate of page display. | [optional]
18+
**pageDisplay_Right** | **Integer** | Gets or sets the right coordinate of page display. | [optional]
19+
**pageDisplay_Top** | **Integer** | Gets or sets the top coordinate of page display. | [optional]
20+
**pageDisplay_Zoom** | **Integer** | Gets or sets the zoom factor of page display. | [optional]
21+
**pageNumber** | **Integer** | Gets or sets the number of bookmark's destination page. | [optional]
22+
**remoteFile** | **String** | Gets or sets the file (path) which is required for "GoToR" action of bookmark. | [optional]
23+
**bookmarks** | [**Bookmarks**](Bookmarks.md) | The children bookmarks. | [optional]
24+
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
25+
26+
27+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
28+
29+

sdk/docs/BookmarkResponse.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
# BookmarkResponse
3+
Represents response containing single bookmark info
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**bookmark** | [**Bookmark**](Bookmark.md) | Bookmark object | [optional]
9+
**code** | **Integer** | Response status code. |
10+
**status** | **String** | Response status. | [optional]
11+
12+
13+
[[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+
15+

sdk/docs/Bookmarks.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
# Bookmarks
3+
Represents list of bookmark.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**list** | [**List<Bookmark>**](Bookmark.md) | List of bookmarks. | [optional]
9+
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
10+
11+
12+
[[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+
14+

sdk/docs/BookmarksResponse.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
# BookmarksResponse
3+
Represents response containing multiple bookmarks info
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**bookmarks** | [**Bookmarks**](Bookmarks.md) | Bookmarks object | [optional]
9+
**code** | **Integer** | Response status code. |
10+
**status** | **String** | Response status. | [optional]
11+
12+
13+
[[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+
15+

sdk/docs/CaretAnnotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Name | Type | Description | Notes
1717
**id** | **String** | Gets ID of the annotation. | [optional]
1818
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
1919
**name** | **String** | Gets Name of the annotation. | [optional]
20-
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
20+
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. | [optional]
2121
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
2222
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
2323
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]

0 commit comments

Comments
 (0)