groupdocs-conversion-cloud 25.6__py3-none-any.whl → 25.8__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/cad_load_options.py +63 -34
- groupdocs_conversion_cloud/models/email_load_options.py +294 -145
- groupdocs_conversion_cloud/models/pdf_load_options.py +238 -56
- groupdocs_conversion_cloud/models/spreadsheet_load_options.py +492 -126
- groupdocs_conversion_cloud/models/web_load_options.py +158 -3
- groupdocs_conversion_cloud-25.8.dist-info/METADATA +132 -0
- {groupdocs_conversion_cloud-25.6.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/RECORD +12 -12
- groupdocs_conversion_cloud-25.6.dist-info/METADATA +0 -94
- {groupdocs_conversion_cloud-25.6.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/WHEEL +0 -0
- {groupdocs_conversion_cloud-25.6.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/licenses/LICENSE +0 -0
- {groupdocs_conversion_cloud-25.6.dist-info → groupdocs_conversion_cloud-25.8.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.8'}
|
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.8'
|
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.8\n"\
|
206
|
+
"SDK Package Version: 25.8".\
|
207
207
|
format(env=sys.platform, pyversion=sys.version)
|
@@ -46,29 +46,34 @@ class CadLoadOptions(LoadOptions):
|
|
46
46
|
"""
|
47
47
|
swagger_types = {
|
48
48
|
'layout_names': 'list[str]',
|
49
|
-
'
|
50
|
-
'
|
49
|
+
'draw_type': 'str',
|
50
|
+
'draw_color': 'str',
|
51
|
+
'background_color': 'str'
|
51
52
|
}
|
52
53
|
|
53
54
|
attribute_map = {
|
54
55
|
'layout_names': 'LayoutNames',
|
55
|
-
'
|
56
|
-
'
|
56
|
+
'draw_type': 'DrawType',
|
57
|
+
'draw_color': 'DrawColor',
|
58
|
+
'background_color': 'BackgroundColor'
|
57
59
|
}
|
58
60
|
|
59
|
-
def __init__(self, layout_names=None,
|
61
|
+
def __init__(self, layout_names=None, draw_type=None, draw_color=None, background_color=None, **kwargs): # noqa: E501
|
60
62
|
"""Initializes new instance of CadLoadOptions""" # noqa: E501
|
61
63
|
|
62
64
|
self._layout_names = None
|
63
|
-
self._background_color = None
|
64
65
|
self._draw_type = None
|
66
|
+
self._draw_color = None
|
67
|
+
self._background_color = None
|
65
68
|
|
66
69
|
if layout_names is not None:
|
67
70
|
self.layout_names = layout_names
|
68
|
-
if background_color is not None:
|
69
|
-
self.background_color = background_color
|
70
71
|
if draw_type is not None:
|
71
72
|
self.draw_type = draw_type
|
73
|
+
if draw_color is not None:
|
74
|
+
self.draw_color = draw_color
|
75
|
+
if background_color is not None:
|
76
|
+
self.background_color = background_color
|
72
77
|
|
73
78
|
base = super(CadLoadOptions, self)
|
74
79
|
base.__init__(**kwargs)
|
@@ -100,36 +105,12 @@ class CadLoadOptions(LoadOptions):
|
|
100
105
|
"""
|
101
106
|
self._layout_names = layout_names
|
102
107
|
|
103
|
-
@property
|
104
|
-
def background_color(self):
|
105
|
-
"""
|
106
|
-
Gets the background_color. # noqa: E501
|
107
|
-
|
108
|
-
Gets or sets a background color. # noqa: E501
|
109
|
-
|
110
|
-
:return: The background_color. # noqa: E501
|
111
|
-
:rtype: str
|
112
|
-
"""
|
113
|
-
return self._background_color
|
114
|
-
|
115
|
-
@background_color.setter
|
116
|
-
def background_color(self, background_color):
|
117
|
-
"""
|
118
|
-
Sets the background_color.
|
119
|
-
|
120
|
-
Gets or sets a background color. # noqa: E501
|
121
|
-
|
122
|
-
:param background_color: The background_color. # noqa: E501
|
123
|
-
:type: str
|
124
|
-
"""
|
125
|
-
self._background_color = background_color
|
126
|
-
|
127
108
|
@property
|
128
109
|
def draw_type(self):
|
129
110
|
"""
|
130
111
|
Gets the draw_type. # noqa: E501
|
131
112
|
|
132
|
-
|
113
|
+
A type of drawing. # noqa: E501
|
133
114
|
|
134
115
|
:return: The draw_type. # noqa: E501
|
135
116
|
:rtype: str
|
@@ -141,7 +122,7 @@ class CadLoadOptions(LoadOptions):
|
|
141
122
|
"""
|
142
123
|
Sets the draw_type.
|
143
124
|
|
144
|
-
|
125
|
+
A type of drawing. # noqa: E501
|
145
126
|
|
146
127
|
:param draw_type: The draw_type. # noqa: E501
|
147
128
|
:type: str
|
@@ -157,6 +138,54 @@ class CadLoadOptions(LoadOptions):
|
|
157
138
|
self._draw_type = draw_type
|
158
139
|
else:
|
159
140
|
self._draw_type = allowed_values[int(draw_type) if six.PY3 else long(draw_type)]
|
141
|
+
|
142
|
+
@property
|
143
|
+
def draw_color(self):
|
144
|
+
"""
|
145
|
+
Gets the draw_color. # noqa: E501
|
146
|
+
|
147
|
+
A foreground color. # noqa: E501
|
148
|
+
|
149
|
+
:return: The draw_color. # noqa: E501
|
150
|
+
:rtype: str
|
151
|
+
"""
|
152
|
+
return self._draw_color
|
153
|
+
|
154
|
+
@draw_color.setter
|
155
|
+
def draw_color(self, draw_color):
|
156
|
+
"""
|
157
|
+
Sets the draw_color.
|
158
|
+
|
159
|
+
A foreground color. # noqa: E501
|
160
|
+
|
161
|
+
:param draw_color: The draw_color. # noqa: E501
|
162
|
+
:type: str
|
163
|
+
"""
|
164
|
+
self._draw_color = draw_color
|
165
|
+
|
166
|
+
@property
|
167
|
+
def background_color(self):
|
168
|
+
"""
|
169
|
+
Gets the background_color. # noqa: E501
|
170
|
+
|
171
|
+
A background color. # noqa: E501
|
172
|
+
|
173
|
+
:return: The background_color. # noqa: E501
|
174
|
+
:rtype: str
|
175
|
+
"""
|
176
|
+
return self._background_color
|
177
|
+
|
178
|
+
@background_color.setter
|
179
|
+
def background_color(self, background_color):
|
180
|
+
"""
|
181
|
+
Sets the background_color.
|
182
|
+
|
183
|
+
A background color. # noqa: E501
|
184
|
+
|
185
|
+
:param background_color: The background_color. # noqa: E501
|
186
|
+
:type: str
|
187
|
+
"""
|
188
|
+
self._background_color = background_color
|
160
189
|
|
161
190
|
def to_dict(self):
|
162
191
|
"""Returns the model properties as a dict"""
|