groupdocs-conversion-cloud 25.3__py3-none-any.whl → 25.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- groupdocs_conversion_cloud/api_client.py +2 -2
- groupdocs_conversion_cloud/configuration.py +2 -2
- groupdocs_conversion_cloud/models/consumption_result.py +34 -3
- {groupdocs_conversion_cloud-25.3.dist-info → groupdocs_conversion_cloud-25.4.dist-info}/METADATA +3 -2
- {groupdocs_conversion_cloud-25.3.dist-info → groupdocs_conversion_cloud-25.4.dist-info}/RECORD +8 -8
- {groupdocs_conversion_cloud-25.3.dist-info → groupdocs_conversion_cloud-25.4.dist-info}/WHEEL +1 -1
- {groupdocs_conversion_cloud-25.3.dist-info → groupdocs_conversion_cloud-25.4.dist-info/licenses}/LICENSE +0 -0
- {groupdocs_conversion_cloud-25.3.dist-info → groupdocs_conversion_cloud-25.4.dist-info}/top_level.txt +0 -0
@@ -74,12 +74,12 @@ class ApiClient(object):
|
|
74
74
|
self.configuration = configuration
|
75
75
|
self.pool = None
|
76
76
|
self.rest_client = rest.RESTClientObject(configuration)
|
77
|
-
self.default_headers = {'x-groupdocs-client': 'python sdk', 'x-groupdocs-version': '25.
|
77
|
+
self.default_headers = {'x-groupdocs-client': 'python sdk', 'x-groupdocs-version': '25.4'}
|
78
78
|
if header_name is not None:
|
79
79
|
self.default_headers[header_name] = header_value
|
80
80
|
self.cookie = cookie
|
81
81
|
# Set default User-Agent.
|
82
|
-
self.user_agent = 'python sdk 25.
|
82
|
+
self.user_agent = 'python sdk 25.4'
|
83
83
|
|
84
84
|
def __del__(self):
|
85
85
|
if self.pool is not None:
|
@@ -202,6 +202,6 @@ class Configuration(object):
|
|
202
202
|
return "Python SDK Debug Report:\n"\
|
203
203
|
"OS: {env}\n"\
|
204
204
|
"Python Version: {pyversion}\n"\
|
205
|
-
"Version of the API: 25.
|
206
|
-
"SDK Package Version: 25.
|
205
|
+
"Version of the API: 25.4\n"\
|
206
|
+
"SDK Package Version: 25.4".\
|
207
207
|
format(env=sys.platform, pyversion=sys.version)
|
@@ -44,24 +44,29 @@ class ConsumptionResult(object):
|
|
44
44
|
"""
|
45
45
|
swagger_types = {
|
46
46
|
'credit': 'float',
|
47
|
-
'quantity': 'float'
|
47
|
+
'quantity': 'float',
|
48
|
+
'billed_api_calls': 'float'
|
48
49
|
}
|
49
50
|
|
50
51
|
attribute_map = {
|
51
52
|
'credit': 'Credit',
|
52
|
-
'quantity': 'Quantity'
|
53
|
+
'quantity': 'Quantity',
|
54
|
+
'billed_api_calls': 'BilledApiCalls'
|
53
55
|
}
|
54
56
|
|
55
|
-
def __init__(self, credit=None, quantity=None, **kwargs): # noqa: E501
|
57
|
+
def __init__(self, credit=None, quantity=None, billed_api_calls=None, **kwargs): # noqa: E501
|
56
58
|
"""Initializes new instance of ConsumptionResult""" # noqa: E501
|
57
59
|
|
58
60
|
self._credit = None
|
59
61
|
self._quantity = None
|
62
|
+
self._billed_api_calls = None
|
60
63
|
|
61
64
|
if credit is not None:
|
62
65
|
self.credit = credit
|
63
66
|
if quantity is not None:
|
64
67
|
self.quantity = quantity
|
68
|
+
if billed_api_calls is not None:
|
69
|
+
self.billed_api_calls = billed_api_calls
|
65
70
|
|
66
71
|
@property
|
67
72
|
def credit(self):
|
@@ -114,6 +119,32 @@ class ConsumptionResult(object):
|
|
114
119
|
if quantity is None:
|
115
120
|
raise ValueError("Invalid value for `quantity`, must not be `None`") # noqa: E501
|
116
121
|
self._quantity = quantity
|
122
|
+
|
123
|
+
@property
|
124
|
+
def billed_api_calls(self):
|
125
|
+
"""
|
126
|
+
Gets the billed_api_calls. # noqa: E501
|
127
|
+
|
128
|
+
Billed API calls number # noqa: E501
|
129
|
+
|
130
|
+
:return: The billed_api_calls. # noqa: E501
|
131
|
+
:rtype: float
|
132
|
+
"""
|
133
|
+
return self._billed_api_calls
|
134
|
+
|
135
|
+
@billed_api_calls.setter
|
136
|
+
def billed_api_calls(self, billed_api_calls):
|
137
|
+
"""
|
138
|
+
Sets the billed_api_calls.
|
139
|
+
|
140
|
+
Billed API calls number # noqa: E501
|
141
|
+
|
142
|
+
:param billed_api_calls: The billed_api_calls. # noqa: E501
|
143
|
+
:type: float
|
144
|
+
"""
|
145
|
+
if billed_api_calls is None:
|
146
|
+
raise ValueError("Invalid value for `billed_api_calls`, must not be `None`") # noqa: E501
|
147
|
+
self._billed_api_calls = billed_api_calls
|
117
148
|
|
118
149
|
def to_dict(self):
|
119
150
|
"""Returns the model properties as a dict"""
|
{groupdocs_conversion_cloud-25.3.dist-info → groupdocs_conversion_cloud-25.4.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: groupdocs-conversion-cloud
|
3
|
-
Version: 25.
|
3
|
+
Version: 25.4
|
4
4
|
Summary: GroupDocs.Conversion Cloud Python SDK
|
5
5
|
Home-page: http://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-python
|
6
6
|
Author: GroupDocs
|
@@ -28,6 +28,7 @@ Dynamic: description
|
|
28
28
|
Dynamic: description-content-type
|
29
29
|
Dynamic: home-page
|
30
30
|
Dynamic: keywords
|
31
|
+
Dynamic: license-file
|
31
32
|
Dynamic: requires-dist
|
32
33
|
Dynamic: summary
|
33
34
|
|
{groupdocs_conversion_cloud-25.3.dist-info → groupdocs_conversion_cloud-25.4.dist-info}/RECORD
RENAMED
@@ -1,8 +1,8 @@
|
|
1
1
|
groupdocs_conversion_cloud/__init__.py,sha256=bgS8QYCgFOSsoxaZd2rbEuIXsHUcWxk4e8IfpOoKlig,16232
|
2
|
-
groupdocs_conversion_cloud/api_client.py,sha256=
|
2
|
+
groupdocs_conversion_cloud/api_client.py,sha256=jaAZTge6qHfIozxpt99hk0sAWNX0p6n8lbQnrWTuQGA,26245
|
3
3
|
groupdocs_conversion_cloud/api_exception.py,sha256=sCJYE-ULzZmOmQ5JY_AJiMKJy2Q9xGlkIz2qOcrcTCQ,2664
|
4
4
|
groupdocs_conversion_cloud/auth.py,sha256=gFrQkTMK2inOTupbLUmDusqmV7lcQcp_EhvMCpTPujY,3297
|
5
|
-
groupdocs_conversion_cloud/configuration.py,sha256=
|
5
|
+
groupdocs_conversion_cloud/configuration.py,sha256=tg4FkApWLhlbk9Nhfq4QJCYCZr5DCVGA6J5bgDjdat0,7671
|
6
6
|
groupdocs_conversion_cloud/rest.py,sha256=L80hCK4WVpwVOQbxKgJJyffvhYr69obg5q9wKK3UJgU,13729
|
7
7
|
groupdocs_conversion_cloud/apis/__init__.py,sha256=3Ym0gZeACRN-srnslZn5DTM0zfp0EiAgA_FwWIgFteU,533
|
8
8
|
groupdocs_conversion_cloud/apis/async_api.py,sha256=hlfweaOWaajCLQZpxbdj4GoWaswumCGtNX7GQsM6B6A,27318
|
@@ -19,7 +19,7 @@ groupdocs_conversion_cloud/models/bmp_convert_options.py,sha256=RT8xVioWkbeTcVTN
|
|
19
19
|
groupdocs_conversion_cloud/models/bmp_load_options.py,sha256=QMkQUOoFb_6nZFPs1y27L8LqpuHe7bzmUgdfTK117BU,3701
|
20
20
|
groupdocs_conversion_cloud/models/cad_load_options.py,sha256=rWsNX48KpWvepl2e6BO7sBxcE0ANGq7za-dBYASN5Qo,6756
|
21
21
|
groupdocs_conversion_cloud/models/cf2_load_options.py,sha256=P6-k1SMQP5-oIuSfnU9Wbcc2XbJ1_jEzsRiQ_4yKfdk,3697
|
22
|
-
groupdocs_conversion_cloud/models/consumption_result.py,sha256=
|
22
|
+
groupdocs_conversion_cloud/models/consumption_result.py,sha256=tvdpeehKrG5Kg7yFrJmsFw0CU6R49gexYejs7kDYdjg,6140
|
23
23
|
groupdocs_conversion_cloud/models/convert_options.py,sha256=swD89qC-2XgxKvtyDEfMzcXRJwSQdBa3a5L46TT5Cl0,6977
|
24
24
|
groupdocs_conversion_cloud/models/convert_settings.py,sha256=3XRBF_YdiJ0blVv-AyxLnrCJK2UCrxI8y8roINU6eYc,9837
|
25
25
|
groupdocs_conversion_cloud/models/csv_load_options.py,sha256=yND6BQ0SXtJqpdkiIuavnnY62swIIla9qc9X_9ICF2U,9804
|
@@ -190,6 +190,7 @@ groupdocs_conversion_cloud/models/xltm_load_options.py,sha256=it_vPEVd7bRtx5-zge
|
|
190
190
|
groupdocs_conversion_cloud/models/xltx_convert_options.py,sha256=4QQiXi3O_AMuQ7HwaN4FdaxEqiE_TFH6pE4tMEMYRvA,3743
|
191
191
|
groupdocs_conversion_cloud/models/xltx_load_options.py,sha256=HWTVvcweqGhKiDd3Thx_1cAA86Ih5XoRH0I20ZFhzw8,3719
|
192
192
|
groupdocs_conversion_cloud/models/xml_load_options.py,sha256=EnfTazRGPOfcN8g_i194XoPBb6AWQat2MdHfLhrdxw8,4753
|
193
|
+
groupdocs_conversion_cloud-25.4.dist-info/licenses/LICENSE,sha256=Q7-vrpo6A1xjL5SlSuhiE88PxHSP9tF_RA9s5IlfznE,1105
|
193
194
|
test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
194
195
|
test/test_context.py,sha256=70m6itd5MUYewV3l1q3i0tqcuubCrSyhZqR2SjO9hGQ,4784
|
195
196
|
test/test_file.py,sha256=ydnQR2vyZMx7hRTw9BVWowHll7ICDSXz530trUf1bvQ,2435
|
@@ -201,8 +202,7 @@ test/apis/test_file_api.py,sha256=N5eUSmgWobu7WrTaLsidULB-zMgsN3EcxsJXlUpeYIw,37
|
|
201
202
|
test/apis/test_folder_api.py,sha256=aAbYP6d30YUOF0Rx-y7U39vG65rh03GSukjQuv9BnLc,3140
|
202
203
|
test/apis/test_info_api.py,sha256=oLs7EbrAeVJeDmfQYvtQK4mKQNFowrkGDdL7GI_M4Cw,2962
|
203
204
|
test/apis/test_storage_api.py,sha256=AaiLE3XYTto6zh182YvKVHlfpR7dcsiBqnu5BDhmSEY,2725
|
204
|
-
groupdocs_conversion_cloud-25.
|
205
|
-
groupdocs_conversion_cloud-25.
|
206
|
-
groupdocs_conversion_cloud-25.
|
207
|
-
groupdocs_conversion_cloud-25.
|
208
|
-
groupdocs_conversion_cloud-25.3.dist-info/RECORD,,
|
205
|
+
groupdocs_conversion_cloud-25.4.dist-info/METADATA,sha256=YOrBZHigvhqmLgzELZJZGAsNQfq-EA2c1IUgMIlbM80,3369
|
206
|
+
groupdocs_conversion_cloud-25.4.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
207
|
+
groupdocs_conversion_cloud-25.4.dist-info/top_level.txt,sha256=QSw6h5GXn7SFkzZ5fIiGyHwma3Buwqb32LfNpDAu1rI,32
|
208
|
+
groupdocs_conversion_cloud-25.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|