Skip to content

Commit df56dc1

Browse files
committed
Updated sources
1 parent bd09a95 commit df56dc1

File tree

5 files changed

+673
-76
lines changed

5 files changed

+673
-76
lines changed

groupdocs_conversion_cloud/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ def __init__(self, configuration, header_name=None, header_value=None,
7474
self.configuration = configuration
7575
self.pool = None
7676
self.rest_client = rest.RESTClientObject(configuration)
77-
self.default_headers = {'x-groupdocs-client': 'python sdk', 'x-groupdocs-version': '25.5'}
77+
self.default_headers = {'x-groupdocs-client': 'python sdk', 'x-groupdocs-version': '25.6'}
7878
if header_name is not None:
7979
self.default_headers[header_name] = header_value
8080
self.cookie = cookie
8181
# Set default User-Agent.
82-
self.user_agent = 'python sdk 25.5'
82+
self.user_agent = 'python sdk 25.6'
8383

8484
def __del__(self):
8585
if self.pool is not None:

groupdocs_conversion_cloud/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,6 @@ def to_debug_report(self):
202202
return "Python SDK Debug Report:\n"\
203203
"OS: {env}\n"\
204204
"Python Version: {pyversion}\n"\
205-
"Version of the API: 25.5\n"\
206-
"SDK Package Version: 25.5".\
205+
"Version of the API: 25.6\n"\
206+
"SDK Package Version: 25.6".\
207207
format(env=sys.platform, pyversion=sys.version)

groupdocs_conversion_cloud/models/presentation_load_options.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def depth(self):
204204
"""
205205
Gets the depth. # noqa: E501
206206
207-
Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1 # noqa: E501
207+
Option to control how many levels in depth to perform conversion Default: 1 # noqa: E501
208208
209209
:return: The depth. # noqa: E501
210210
:rtype: int
@@ -216,7 +216,7 @@ def depth(self, depth):
216216
"""
217217
Sets the depth.
218218
219-
Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1 # noqa: E501
219+
Option to control how many levels in depth to perform conversion Default: 1 # noqa: E501
220220
221221
:param depth: The depth. # noqa: E501
222222
:type: int
@@ -230,7 +230,7 @@ def convert_owned(self):
230230
"""
231231
Gets the convert_owned. # noqa: E501
232232
233-
Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false # noqa: E501
233+
Option to control whether the owned documents in the documents container must be converted # noqa: E501
234234
235235
:return: The convert_owned. # noqa: E501
236236
:rtype: bool
@@ -242,7 +242,7 @@ def convert_owned(self, convert_owned):
242242
"""
243243
Sets the convert_owned.
244244
245-
Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false # noqa: E501
245+
Option to control whether the owned documents in the documents container must be converted # noqa: E501
246246
247247
:param convert_owned: The convert_owned. # noqa: E501
248248
:type: bool
@@ -256,7 +256,7 @@ def convert_owner(self):
256256
"""
257257
Gets the convert_owner. # noqa: E501
258258
259-
Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true # noqa: E501
259+
Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true # noqa: E501
260260
261261
:return: The convert_owner. # noqa: E501
262262
:rtype: bool
@@ -268,7 +268,7 @@ def convert_owner(self, convert_owner):
268268
"""
269269
Sets the convert_owner.
270270
271-
Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true # noqa: E501
271+
Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true # noqa: E501
272272
273273
:param convert_owner: The convert_owner. # noqa: E501
274274
:type: bool

0 commit comments

Comments
 (0)