Skip to content

Commit 45ae169

Browse files
authored
Merge pull request #47 from aspose-pdf-cloud/develop
update to 23.7.0
2 parents 8159107 + b86cae7 commit 45ae169

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ These SDKs are now fully supported. If you have any questions, see any bugs or h
99

1010
Extract Text & Images of a PDF document online https://products.aspose.app/pdf/parser.
1111

12-
## Enhancements in Version 23.6
13-
- Support to convert password protected PDF documents to PPTX.
12+
## Enhancements in Version 23.7
13+
- Form Field MappingName property support.
1414
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
1515

16-
## Bugs fixed in Version 23.6
17-
- Text Replacement API constantly hitting 504 Gateway Timeout.
16+
## Bugs fixed in Version 23.7
17+
- Adding Radio Button throws Internal Error.
1818

1919
## Installation
2020
```

api_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ func (c *APIClient) prepareRequest (
176176

177177
// set custom header
178178
headerParams["x-aspose-client"] = "go sdk"
179-
headerParams["x-aspose-client-version"] = "23.6.0"
179+
headerParams["x-aspose-client-version"] = "23.7.0"
180180

181181
// Detect postBody type and post.
182182
if postBody != nil {

docs/Field.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**Links** | [**[]Link**](Link.md) | Link to the document. | [optional] [default to null]
88
**Name** | **string** | Field name. | [optional] [default to null]
9+
**MappingName** | **string** | Mapping name. | [optional] [default to null]
910
**SelectedItems** | **[]int32** | Selected items. | [optional] [default to null]
1011
**Type_** | [***FieldType**](FieldType.md) | Field type. | [optional] [default to null]
1112
**Rect** | [***Rectangle**](Rectangle.md) | Field rectangle. | [optional] [default to null]

field.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ type Field struct {
2727
Links []Link `json:"Links,omitempty"`
2828
// Field name.
2929
Name string `json:"Name,omitempty"`
30+
// Mapping name.
31+
MappingName string `json:"MappingName,omitempty"`
3032
// Selected items.
3133
SelectedItems []int32 `json:"SelectedItems,omitempty"`
3234
// Field type.

0 commit comments

Comments
 (0)