Skip to content

Commit 722563b

Browse files
Merge pull request #12 from kaferi/master
Add docs
2 parents 0ae2d99 + 05b897c commit 722563b

File tree

108 files changed

+6166
-2
lines changed

Some content is hidden

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

108 files changed

+6166
-2
lines changed

README.md

Lines changed: 271 additions & 1 deletion
Large diffs are not rendered by default.

sdk/.swagger-codegen-ignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#docs/*.md
2222
# Then explicitly reverse the ignore rule for a single file:
2323
#!docs/README.md
24-
docs/*.*
24+
#docs/*.*
2525
src/main/java/com/aspose/asposecloudpdfandroid/auth/*.*
2626
.gitignore
2727
git_push.sh

sdk/docs/Annotation.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
# Annotation
3+
Provides annotation.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**contents** | **String** | Get the annotation content. | [optional]
9+
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
10+
**subject** | **String** | Get the annotation subject. | [optional]
11+
**title** | **String** | Get the annotation title. | [optional]
12+
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
13+
**id** | **String** | Gets ID of the annotation. | [optional]
14+
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
15+
**name** | **String** | Gets Name of the annotation. | [optional]
16+
**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
17+
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
18+
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
19+
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
20+
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets VerticalAlignment of the annotation. | [optional]
21+
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
22+
23+
24+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
25+
26+

sdk/docs/AnnotationFlags.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
# AnnotationFlags
3+
A set of flags specifying various characteristics of the annotation.
4+
5+
## Enum
6+
| Name |
7+
| ----------- |
8+
| **DEFAULT** |
9+
| **INVISIBLE** |
10+
| **HIDDEN** |
11+
| **PRINT** |
12+
| **NOZOOM** |
13+
| **NOROTATE** |
14+
| **NOVIEW** |
15+
| **READONLY** |
16+
| **LOCKED** |
17+
| **TOGGLENOVIEW** |
18+
| **LOCKEDCONTENTS** |
19+
20+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
21+
22+

sdk/docs/AnnotationInfo.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
# AnnotationInfo
3+
Provides annotation.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**annotationType** | [**AnnotationType**](AnnotationType.md) | Gets annotation type. |
9+
**contents** | **String** | Get the annotation content. | [optional]
10+
**creationDate** | **String** | The date and time when the annotation was created. | [optional]
11+
**subject** | **String** | Get the annotation subject. | [optional]
12+
**title** | **String** | Get the annotation title. | [optional]
13+
**modified** | **String** | The date and time when the annotation was last modified. | [optional]
14+
**id** | **String** | Gets ID of the annotation. | [optional]
15+
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
16+
**name** | **String** | Gets Name of the annotation. | [optional]
17+
**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
18+
**pageIndex** | **Integer** | Gets PageIndex of the annotation. | [optional]
19+
**zIndex** | **Integer** | Gets ZIndex of the annotation. | [optional]
20+
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]
21+
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets VerticalAlignment of the annotation. | [optional]
22+
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
23+
24+
25+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
26+
27+

sdk/docs/AnnotationState.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# AnnotationState
3+
The enumeration of states to which the original annotation can be set.
4+
5+
## Enum
6+
| Name |
7+
| ----------- |
8+
| **UNDEFINED** |
9+
| **MARKED** |
10+
| **UNMARKED** |
11+
| **ACCEPTED** |
12+
| **REJECTED** |
13+
| **CANCELLED** |
14+
| **COMPLETED** |
15+
| **NONE** |
16+
17+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
18+
19+

sdk/docs/AnnotationType.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
# AnnotationType
3+
4+
5+
## Enum
6+
| Name |
7+
| ----------- |
8+
| **TEXT** |
9+
| **CIRCLE** |
10+
| **POLYGON** |
11+
| **POLYLINE** |
12+
| **LINE** |
13+
| **SQUARE** |
14+
| **FREETEXT** |
15+
| **HIGHLIGHT** |
16+
| **UNDERLINE** |
17+
| **SQUIGGLY** |
18+
| **STRIKEOUT** |
19+
| **CARET** |
20+
| **INK** |
21+
| **LINK** |
22+
| **POPUP** |
23+
| **FILEATTACHMENT** |
24+
| **SOUND** |
25+
| **MOVIE** |
26+
| **SCREEN** |
27+
| **WIDGET** |
28+
| **WATERMARK** |
29+
| **TRAPNET** |
30+
| **PRINTERMARK** |
31+
| **REDACTION** |
32+
| **STAMP** |
33+
| **RICHMEDIA** |
34+
| **UNKNOWN** |
35+
| **PDF3D** |
36+
37+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
38+
39+

sdk/docs/AnnotationsInfo.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
# AnnotationsInfo
3+
List of annotations.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**list** | [**List<AnnotationInfo>**](AnnotationInfo.md) | | [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+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
# AnnotationsInfoResponse
3+
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**annotations** | [**AnnotationsInfo**](AnnotationsInfo.md) | | [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+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
# AntialiasingProcessingType
3+
This enum describes possible antialiasing measures during conversion
4+
5+
## Enum
6+
| Name |
7+
| ----------- |
8+
| **NOADDITIONALPROCESSING** |
9+
| **TRYCORRECTRESULTHTML** |
10+
11+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
12+
13+

0 commit comments

Comments
 (0)