Skip to content

Commit 3db63bb

Browse files
update to 23.7
1 parent e30425a commit 3db63bb

File tree

6 files changed

+37
-8
lines changed

6 files changed

+37
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
3030
## Read PDF Formats
3131
MHT, PCL, PS, XSLFO, MD
3232

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

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

4040
## Requirements.
4141
Python 2.7 and 3.4+

asposepdfcloud/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def __init__(self, app_key, app_sid, host=None):
8383
self.rest_client = RESTClientObject()
8484
self.default_headers = {}
8585
self.default_headers['x-aspose-client'] = 'python sdk'
86-
self.default_headers['x-aspose-client-version'] = '23.6.0'
86+
self.default_headers['x-aspose-client-version'] = '23.7.0'
8787

8888
self.app_key = app_key
8989
self.app_sid = app_sid

asposepdfcloud/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,5 +199,5 @@ def to_debug_report(self):
199199
"OS: {env}\n"\
200200
"Python Version: {pyversion}\n"\
201201
"Version of the API: 3.0\n"\
202-
"SDK Package Version: 23.6.0".\
202+
"SDK Package Version: 23.7.0".\
203203
format(env=sys.platform, pyversion=sys.version)

asposepdfcloud/models/field.py

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ class Field(object):
5050
swagger_types = {
5151
'links': 'list[Link]',
5252
'name': 'str',
53+
'mapping_name': 'str',
5354
'selected_items': 'list[int]',
5455
'type': 'FieldType',
5556
'rect': 'Rectangle',
@@ -59,19 +60,21 @@ class Field(object):
5960
attribute_map = {
6061
'links': 'Links',
6162
'name': 'Name',
63+
'mapping_name': 'MappingName',
6264
'selected_items': 'SelectedItems',
6365
'type': 'Type',
6466
'rect': 'Rect',
6567
'values': 'Values'
6668
}
6769

68-
def __init__(self, links=None, name=None, selected_items=None, type=None, rect=None, values=None):
70+
def __init__(self, links=None, name=None, mapping_name=None, selected_items=None, type=None, rect=None, values=None):
6971
"""
7072
Field - a model defined in Swagger
7173
"""
7274

7375
self._links = None
7476
self._name = None
77+
self._mapping_name = None
7578
self._selected_items = None
7679
self._type = None
7780
self._rect = None
@@ -81,6 +84,8 @@ def __init__(self, links=None, name=None, selected_items=None, type=None, rect=N
8184
self.links = links
8285
if name is not None:
8386
self.name = name
87+
if mapping_name is not None:
88+
self.mapping_name = mapping_name
8489
if selected_items is not None:
8590
self.selected_items = selected_items
8691
if type is not None:
@@ -135,6 +140,29 @@ def name(self, name):
135140

136141
self._name = name
137142

143+
@property
144+
def mapping_name(self):
145+
"""
146+
Gets the mapping_name of this Field.
147+
Mapping name.
148+
149+
:return: The mapping_name of this Field.
150+
:rtype: str
151+
"""
152+
return self._mapping_name
153+
154+
@mapping_name.setter
155+
def mapping_name(self, mapping_name):
156+
"""
157+
Sets the mapping_name of this Field.
158+
Mapping name.
159+
160+
:param mapping_name: The mapping_name of this Field.
161+
:type: str
162+
"""
163+
164+
self._mapping_name = mapping_name
165+
138166
@property
139167
def selected_items(self):
140168
"""

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** | [**list[Link]**](Link.md) | Link to the document. | [optional]
88
**name** | **str** | Field name. | [optional]
9+
**mapping_name** | **str** | Mapping name. | [optional]
910
**selected_items** | **list[int]** | Selected items. | [optional]
1011
**type** | [**FieldType**](FieldType.md) | Field type. | [optional]
1112
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from setuptools import setup, find_packages
3333

3434
NAME = "asposepdfcloud"
35-
VERSION = "23.6.0"
35+
VERSION = "23.7.0"
3636
# To install the library, run the following
3737
#
3838
# python setup.py install

0 commit comments

Comments
 (0)