Skip to content

Commit 864ce83

Browse files
Merge pull request #16 from kaferi/master
Added docs
2 parents 5b1d86d + d4f2117 commit 864ce83

File tree

108 files changed

+6523
-23
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

+6523
-23
lines changed

.swagger-codegen-ignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
*.sh
2626
.travis.yml
2727
.gitignore
28-
*.md
29-
docs/*
28+
#*.md
29+
#docs/*
3030

31-
#Ignere credentials file
31+
#Ignore credentials file
3232
src/Settings/servercreds.json
3333

3434
#Do not generate tests.

README.md

Lines changed: 303 additions & 20 deletions
Large diffs are not rendered by default.

docs/Annotation.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Aspose.Pdf.Cloud.Sdk.Model.Annotation
2+
Provides annotation.
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**Links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
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. | [optional]
18+
**PageIndex** | **int?** | Gets PageIndex of the annotation. | [optional]
19+
**ZIndex** | **int?** | 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+
23+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
24+

docs/AnnotationFlags.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Aspose.Pdf.Cloud.Sdk.Model.AnnotationFlags
2+
A set of flags specifying various characteristics of the annotation.
3+
4+
## Enum
5+
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+
21+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
22+

docs/AnnotationInfo.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Aspose.Pdf.Cloud.Sdk.Model.AnnotationInfo
2+
Provides annotation.
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**Links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
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. | [optional]
18+
**PageIndex** | **int?** | Gets PageIndex of the annotation. | [optional]
19+
**ZIndex** | **int?** | 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+
**AnnotationType** | [**AnnotationType**](AnnotationType.md) | Gets annotation type. | [optional]
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+

docs/AnnotationState.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Aspose.Pdf.Cloud.Sdk.Model.AnnotationState
2+
The enumeration of states to which the original annotation can be set.
3+
4+
## Enum
5+
6+
| Name |
7+
|------------|
8+
|**Undefined**|
9+
|**Marked**|
10+
|**Unmarked**|
11+
|**Accepted**|
12+
|**Rejected**|
13+
|**Cancelled**|
14+
|**Completed**|
15+
|**None**|
16+
17+
18+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
19+

docs/AnnotationType.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Aspose.Pdf.Cloud.Sdk.Model.AnnotationType
2+
3+
4+
## Enum
5+
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+
38+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
39+

docs/AnnotationsInfo.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Aspose.Pdf.Cloud.Sdk.Model.AnnotationsInfo
2+
List of annotations.
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**Links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
9+
**List** | [**List<AnnotationInfo>**](AnnotationInfo.md) | | [optional]
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+

docs/AnnotationsInfoResponse.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Aspose.Pdf.Cloud.Sdk.Model.AnnotationsInfoResponse
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**Code** | **int?** | Response status code. |
9+
**Status** | **string** | Response status. | [optional]
10+
**Annotations** | [**AnnotationsInfo**](AnnotationsInfo.md) | | [optional]
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+

docs/AntialiasingProcessingType.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Aspose.Pdf.Cloud.Sdk.Model.AntialiasingProcessingType
2+
This enum describes possible antialiasing measures during conversion
3+
4+
## Enum
5+
6+
| Name |
7+
|------------|
8+
|**NoAdditionalProcessing**|
9+
|**TryCorrectResultHtml**|
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+

0 commit comments

Comments
 (0)