byteplus-python-sdk-v2 3.0.53__py2.py3-none-any.whl → 3.0.54__py2.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.
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/METADATA +1 -1
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/RECORD +38 -27
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/top_level.txt +1 -0
- byteplussdkclawsentry/__init__.py +24 -0
- byteplussdkclawsentry/api/__init__.py +6 -0
- byteplussdkclawsentry/api/clawsentry_api.py +131 -0
- byteplussdkclawsentry/models/__init__.py +20 -0
- byteplussdkclawsentry/models/base_for_create_claw_input.py +126 -0
- byteplussdkclawsentry/models/create_claw_request.py +251 -0
- byteplussdkclawsentry/models/create_claw_response.py +279 -0
- byteplussdkcore/api_client.py +1 -1
- byteplussdkcore/configuration.py +1 -1
- byteplussdkcore/endpoint/providers/default_provider.py +7 -0
- byteplussdkcore/endpoint/providers/standard_provider.py +1 -0
- byteplussdkcpaas/__init__.py +4 -0
- byteplussdkcpaas/models/__init__.py +4 -0
- byteplussdkcpaas/models/create_template_v2_request.py +27 -1
- byteplussdkcpaas/models/data_for_get_template_v2_output.py +79 -1
- byteplussdkcpaas/models/element_style_for_create_template_v2_input.py +497 -3
- byteplussdkcpaas/models/element_style_for_get_template_v2_output.py +497 -3
- byteplussdkcpaas/models/extend_attrs_for_create_template_v2_input.py +79 -1
- byteplussdkcpaas/models/extend_attrs_for_get_template_v2_output.py +79 -1
- byteplussdkcpaas/models/item_for_create_template_v2_input.py +149 -0
- byteplussdkcpaas/models/item_for_get_template_v2_output.py +149 -0
- byteplussdkcpaas/models/page_dto_list_for_create_template_v2_input.py +29 -3
- byteplussdkcpaas/models/page_dto_list_for_get_template_v2_output.py +29 -3
- byteplussdkcpaas/models/page_element_dto_list_for_create_template_v2_input.py +29 -3
- byteplussdkcpaas/models/page_element_dto_list_for_get_template_v2_output.py +29 -3
- byteplussdkcpaas/models/template_button_list_for_create_template_v2_input.py +227 -0
- byteplussdkcpaas/models/template_button_list_for_get_template_v2_output.py +227 -0
- byteplussdkcpaas/models/template_list_for_create_template_v2_input.py +235 -1
- byteplussdkcpaas/models/template_list_for_get_template_v2_output.py +235 -1
- byteplussdkcpaas/models/template_status_for_list_template_v2_output.py +79 -1
- byteplussdkcpaas/models/variables_dto_list_for_create_template_v2_input.py +27 -1
- byteplussdkcpaas/models/variables_dto_list_for_get_template_v2_output.py +27 -1
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/WHEEL +0 -0
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/licenses/LICENSE.txt +0 -0
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/licenses/NOTICE.md +0 -0
|
@@ -33,43 +33,102 @@ class ElementStyleForGetTemplateV2Output(object):
|
|
|
33
33
|
and the value is json key in definition.
|
|
34
34
|
"""
|
|
35
35
|
swagger_types = {
|
|
36
|
+
'deeplink': 'str',
|
|
36
37
|
'element_type': 'str',
|
|
37
38
|
'expires_time': 'int',
|
|
38
39
|
'has_expires': 'bool',
|
|
39
40
|
'has_security': 'bool',
|
|
41
|
+
'image_jump_type': 'str',
|
|
42
|
+
'image_link': 'str',
|
|
43
|
+
'items': 'list[ItemForGetTemplateV2Output]',
|
|
44
|
+
'package_name': 'str',
|
|
45
|
+
'param_left': 'str',
|
|
46
|
+
'param_right': 'str',
|
|
40
47
|
'real_content': 'str',
|
|
41
48
|
'resource_code': 'str',
|
|
49
|
+
'resource_content_type': 'str',
|
|
42
50
|
'resource_name': 'str',
|
|
43
|
-
'
|
|
51
|
+
'resource_size': 'int',
|
|
52
|
+
'resource_thumb_image_url': 'str',
|
|
53
|
+
'resource_type': 'str',
|
|
54
|
+
'resource_url': 'str',
|
|
55
|
+
'sub_text': 'str',
|
|
56
|
+
'thumb_content_type': 'str',
|
|
57
|
+
'thumb_image_file_size': 'int',
|
|
58
|
+
'thumb_image_url': 'str',
|
|
59
|
+
'thumbnail_resource_content_type': 'str',
|
|
60
|
+
'thumbnail_resource_name': 'str',
|
|
61
|
+
'thumbnail_resource_size': 'int',
|
|
62
|
+
'thumbnail_url': 'str'
|
|
44
63
|
}
|
|
45
64
|
|
|
46
65
|
attribute_map = {
|
|
66
|
+
'deeplink': 'Deeplink',
|
|
47
67
|
'element_type': 'ElementType',
|
|
48
68
|
'expires_time': 'ExpiresTime',
|
|
49
69
|
'has_expires': 'HasExpires',
|
|
50
70
|
'has_security': 'HasSecurity',
|
|
71
|
+
'image_jump_type': 'ImageJumpType',
|
|
72
|
+
'image_link': 'ImageLink',
|
|
73
|
+
'items': 'Items',
|
|
74
|
+
'package_name': 'PackageName',
|
|
75
|
+
'param_left': 'ParamLeft',
|
|
76
|
+
'param_right': 'ParamRight',
|
|
51
77
|
'real_content': 'RealContent',
|
|
52
78
|
'resource_code': 'ResourceCode',
|
|
79
|
+
'resource_content_type': 'ResourceContentType',
|
|
53
80
|
'resource_name': 'ResourceName',
|
|
54
|
-
'
|
|
81
|
+
'resource_size': 'ResourceSize',
|
|
82
|
+
'resource_thumb_image_url': 'ResourceThumbImageUrl',
|
|
83
|
+
'resource_type': 'ResourceType',
|
|
84
|
+
'resource_url': 'ResourceUrl',
|
|
85
|
+
'sub_text': 'SubText',
|
|
86
|
+
'thumb_content_type': 'ThumbContentType',
|
|
87
|
+
'thumb_image_file_size': 'ThumbImageFileSize',
|
|
88
|
+
'thumb_image_url': 'ThumbImageUrl',
|
|
89
|
+
'thumbnail_resource_content_type': 'ThumbnailResourceContentType',
|
|
90
|
+
'thumbnail_resource_name': 'ThumbnailResourceName',
|
|
91
|
+
'thumbnail_resource_size': 'ThumbnailResourceSize',
|
|
92
|
+
'thumbnail_url': 'ThumbnailUrl'
|
|
55
93
|
}
|
|
56
94
|
|
|
57
|
-
def __init__(self, element_type=None, expires_time=None, has_expires=None, has_security=None, real_content=None, resource_code=None, resource_name=None, resource_url=None, _configuration=None): # noqa: E501
|
|
95
|
+
def __init__(self, deeplink=None, element_type=None, expires_time=None, has_expires=None, has_security=None, image_jump_type=None, image_link=None, items=None, package_name=None, param_left=None, param_right=None, real_content=None, resource_code=None, resource_content_type=None, resource_name=None, resource_size=None, resource_thumb_image_url=None, resource_type=None, resource_url=None, sub_text=None, thumb_content_type=None, thumb_image_file_size=None, thumb_image_url=None, thumbnail_resource_content_type=None, thumbnail_resource_name=None, thumbnail_resource_size=None, thumbnail_url=None, _configuration=None): # noqa: E501
|
|
58
96
|
"""ElementStyleForGetTemplateV2Output - a model defined in Swagger""" # noqa: E501
|
|
59
97
|
if _configuration is None:
|
|
60
98
|
_configuration = Configuration()
|
|
61
99
|
self._configuration = _configuration
|
|
62
100
|
|
|
101
|
+
self._deeplink = None
|
|
63
102
|
self._element_type = None
|
|
64
103
|
self._expires_time = None
|
|
65
104
|
self._has_expires = None
|
|
66
105
|
self._has_security = None
|
|
106
|
+
self._image_jump_type = None
|
|
107
|
+
self._image_link = None
|
|
108
|
+
self._items = None
|
|
109
|
+
self._package_name = None
|
|
110
|
+
self._param_left = None
|
|
111
|
+
self._param_right = None
|
|
67
112
|
self._real_content = None
|
|
68
113
|
self._resource_code = None
|
|
114
|
+
self._resource_content_type = None
|
|
69
115
|
self._resource_name = None
|
|
116
|
+
self._resource_size = None
|
|
117
|
+
self._resource_thumb_image_url = None
|
|
118
|
+
self._resource_type = None
|
|
70
119
|
self._resource_url = None
|
|
120
|
+
self._sub_text = None
|
|
121
|
+
self._thumb_content_type = None
|
|
122
|
+
self._thumb_image_file_size = None
|
|
123
|
+
self._thumb_image_url = None
|
|
124
|
+
self._thumbnail_resource_content_type = None
|
|
125
|
+
self._thumbnail_resource_name = None
|
|
126
|
+
self._thumbnail_resource_size = None
|
|
127
|
+
self._thumbnail_url = None
|
|
71
128
|
self.discriminator = None
|
|
72
129
|
|
|
130
|
+
if deeplink is not None:
|
|
131
|
+
self.deeplink = deeplink
|
|
73
132
|
if element_type is not None:
|
|
74
133
|
self.element_type = element_type
|
|
75
134
|
if expires_time is not None:
|
|
@@ -78,14 +137,71 @@ class ElementStyleForGetTemplateV2Output(object):
|
|
|
78
137
|
self.has_expires = has_expires
|
|
79
138
|
if has_security is not None:
|
|
80
139
|
self.has_security = has_security
|
|
140
|
+
if image_jump_type is not None:
|
|
141
|
+
self.image_jump_type = image_jump_type
|
|
142
|
+
if image_link is not None:
|
|
143
|
+
self.image_link = image_link
|
|
144
|
+
if items is not None:
|
|
145
|
+
self.items = items
|
|
146
|
+
if package_name is not None:
|
|
147
|
+
self.package_name = package_name
|
|
148
|
+
if param_left is not None:
|
|
149
|
+
self.param_left = param_left
|
|
150
|
+
if param_right is not None:
|
|
151
|
+
self.param_right = param_right
|
|
81
152
|
if real_content is not None:
|
|
82
153
|
self.real_content = real_content
|
|
83
154
|
if resource_code is not None:
|
|
84
155
|
self.resource_code = resource_code
|
|
156
|
+
if resource_content_type is not None:
|
|
157
|
+
self.resource_content_type = resource_content_type
|
|
85
158
|
if resource_name is not None:
|
|
86
159
|
self.resource_name = resource_name
|
|
160
|
+
if resource_size is not None:
|
|
161
|
+
self.resource_size = resource_size
|
|
162
|
+
if resource_thumb_image_url is not None:
|
|
163
|
+
self.resource_thumb_image_url = resource_thumb_image_url
|
|
164
|
+
if resource_type is not None:
|
|
165
|
+
self.resource_type = resource_type
|
|
87
166
|
if resource_url is not None:
|
|
88
167
|
self.resource_url = resource_url
|
|
168
|
+
if sub_text is not None:
|
|
169
|
+
self.sub_text = sub_text
|
|
170
|
+
if thumb_content_type is not None:
|
|
171
|
+
self.thumb_content_type = thumb_content_type
|
|
172
|
+
if thumb_image_file_size is not None:
|
|
173
|
+
self.thumb_image_file_size = thumb_image_file_size
|
|
174
|
+
if thumb_image_url is not None:
|
|
175
|
+
self.thumb_image_url = thumb_image_url
|
|
176
|
+
if thumbnail_resource_content_type is not None:
|
|
177
|
+
self.thumbnail_resource_content_type = thumbnail_resource_content_type
|
|
178
|
+
if thumbnail_resource_name is not None:
|
|
179
|
+
self.thumbnail_resource_name = thumbnail_resource_name
|
|
180
|
+
if thumbnail_resource_size is not None:
|
|
181
|
+
self.thumbnail_resource_size = thumbnail_resource_size
|
|
182
|
+
if thumbnail_url is not None:
|
|
183
|
+
self.thumbnail_url = thumbnail_url
|
|
184
|
+
|
|
185
|
+
@property
|
|
186
|
+
def deeplink(self):
|
|
187
|
+
"""Gets the deeplink of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
:return: The deeplink of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
191
|
+
:rtype: str
|
|
192
|
+
"""
|
|
193
|
+
return self._deeplink
|
|
194
|
+
|
|
195
|
+
@deeplink.setter
|
|
196
|
+
def deeplink(self, deeplink):
|
|
197
|
+
"""Sets the deeplink of this ElementStyleForGetTemplateV2Output.
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
:param deeplink: The deeplink of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
201
|
+
:type: str
|
|
202
|
+
"""
|
|
203
|
+
|
|
204
|
+
self._deeplink = deeplink
|
|
89
205
|
|
|
90
206
|
@property
|
|
91
207
|
def element_type(self):
|
|
@@ -171,6 +287,132 @@ class ElementStyleForGetTemplateV2Output(object):
|
|
|
171
287
|
|
|
172
288
|
self._has_security = has_security
|
|
173
289
|
|
|
290
|
+
@property
|
|
291
|
+
def image_jump_type(self):
|
|
292
|
+
"""Gets the image_jump_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
:return: The image_jump_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
296
|
+
:rtype: str
|
|
297
|
+
"""
|
|
298
|
+
return self._image_jump_type
|
|
299
|
+
|
|
300
|
+
@image_jump_type.setter
|
|
301
|
+
def image_jump_type(self, image_jump_type):
|
|
302
|
+
"""Sets the image_jump_type of this ElementStyleForGetTemplateV2Output.
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
:param image_jump_type: The image_jump_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
306
|
+
:type: str
|
|
307
|
+
"""
|
|
308
|
+
|
|
309
|
+
self._image_jump_type = image_jump_type
|
|
310
|
+
|
|
311
|
+
@property
|
|
312
|
+
def image_link(self):
|
|
313
|
+
"""Gets the image_link of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
:return: The image_link of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
317
|
+
:rtype: str
|
|
318
|
+
"""
|
|
319
|
+
return self._image_link
|
|
320
|
+
|
|
321
|
+
@image_link.setter
|
|
322
|
+
def image_link(self, image_link):
|
|
323
|
+
"""Sets the image_link of this ElementStyleForGetTemplateV2Output.
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
:param image_link: The image_link of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
327
|
+
:type: str
|
|
328
|
+
"""
|
|
329
|
+
|
|
330
|
+
self._image_link = image_link
|
|
331
|
+
|
|
332
|
+
@property
|
|
333
|
+
def items(self):
|
|
334
|
+
"""Gets the items of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
:return: The items of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
338
|
+
:rtype: list[ItemForGetTemplateV2Output]
|
|
339
|
+
"""
|
|
340
|
+
return self._items
|
|
341
|
+
|
|
342
|
+
@items.setter
|
|
343
|
+
def items(self, items):
|
|
344
|
+
"""Sets the items of this ElementStyleForGetTemplateV2Output.
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
:param items: The items of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
348
|
+
:type: list[ItemForGetTemplateV2Output]
|
|
349
|
+
"""
|
|
350
|
+
|
|
351
|
+
self._items = items
|
|
352
|
+
|
|
353
|
+
@property
|
|
354
|
+
def package_name(self):
|
|
355
|
+
"""Gets the package_name of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
:return: The package_name of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
359
|
+
:rtype: str
|
|
360
|
+
"""
|
|
361
|
+
return self._package_name
|
|
362
|
+
|
|
363
|
+
@package_name.setter
|
|
364
|
+
def package_name(self, package_name):
|
|
365
|
+
"""Sets the package_name of this ElementStyleForGetTemplateV2Output.
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
:param package_name: The package_name of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
369
|
+
:type: str
|
|
370
|
+
"""
|
|
371
|
+
|
|
372
|
+
self._package_name = package_name
|
|
373
|
+
|
|
374
|
+
@property
|
|
375
|
+
def param_left(self):
|
|
376
|
+
"""Gets the param_left of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
:return: The param_left of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
380
|
+
:rtype: str
|
|
381
|
+
"""
|
|
382
|
+
return self._param_left
|
|
383
|
+
|
|
384
|
+
@param_left.setter
|
|
385
|
+
def param_left(self, param_left):
|
|
386
|
+
"""Sets the param_left of this ElementStyleForGetTemplateV2Output.
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
:param param_left: The param_left of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
390
|
+
:type: str
|
|
391
|
+
"""
|
|
392
|
+
|
|
393
|
+
self._param_left = param_left
|
|
394
|
+
|
|
395
|
+
@property
|
|
396
|
+
def param_right(self):
|
|
397
|
+
"""Gets the param_right of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
:return: The param_right of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
401
|
+
:rtype: str
|
|
402
|
+
"""
|
|
403
|
+
return self._param_right
|
|
404
|
+
|
|
405
|
+
@param_right.setter
|
|
406
|
+
def param_right(self, param_right):
|
|
407
|
+
"""Sets the param_right of this ElementStyleForGetTemplateV2Output.
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
:param param_right: The param_right of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
411
|
+
:type: str
|
|
412
|
+
"""
|
|
413
|
+
|
|
414
|
+
self._param_right = param_right
|
|
415
|
+
|
|
174
416
|
@property
|
|
175
417
|
def real_content(self):
|
|
176
418
|
"""Gets the real_content of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
@@ -213,6 +455,27 @@ class ElementStyleForGetTemplateV2Output(object):
|
|
|
213
455
|
|
|
214
456
|
self._resource_code = resource_code
|
|
215
457
|
|
|
458
|
+
@property
|
|
459
|
+
def resource_content_type(self):
|
|
460
|
+
"""Gets the resource_content_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
:return: The resource_content_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
464
|
+
:rtype: str
|
|
465
|
+
"""
|
|
466
|
+
return self._resource_content_type
|
|
467
|
+
|
|
468
|
+
@resource_content_type.setter
|
|
469
|
+
def resource_content_type(self, resource_content_type):
|
|
470
|
+
"""Sets the resource_content_type of this ElementStyleForGetTemplateV2Output.
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
:param resource_content_type: The resource_content_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
474
|
+
:type: str
|
|
475
|
+
"""
|
|
476
|
+
|
|
477
|
+
self._resource_content_type = resource_content_type
|
|
478
|
+
|
|
216
479
|
@property
|
|
217
480
|
def resource_name(self):
|
|
218
481
|
"""Gets the resource_name of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
@@ -234,6 +497,69 @@ class ElementStyleForGetTemplateV2Output(object):
|
|
|
234
497
|
|
|
235
498
|
self._resource_name = resource_name
|
|
236
499
|
|
|
500
|
+
@property
|
|
501
|
+
def resource_size(self):
|
|
502
|
+
"""Gets the resource_size of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
:return: The resource_size of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
506
|
+
:rtype: int
|
|
507
|
+
"""
|
|
508
|
+
return self._resource_size
|
|
509
|
+
|
|
510
|
+
@resource_size.setter
|
|
511
|
+
def resource_size(self, resource_size):
|
|
512
|
+
"""Sets the resource_size of this ElementStyleForGetTemplateV2Output.
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
:param resource_size: The resource_size of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
516
|
+
:type: int
|
|
517
|
+
"""
|
|
518
|
+
|
|
519
|
+
self._resource_size = resource_size
|
|
520
|
+
|
|
521
|
+
@property
|
|
522
|
+
def resource_thumb_image_url(self):
|
|
523
|
+
"""Gets the resource_thumb_image_url of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
:return: The resource_thumb_image_url of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
527
|
+
:rtype: str
|
|
528
|
+
"""
|
|
529
|
+
return self._resource_thumb_image_url
|
|
530
|
+
|
|
531
|
+
@resource_thumb_image_url.setter
|
|
532
|
+
def resource_thumb_image_url(self, resource_thumb_image_url):
|
|
533
|
+
"""Sets the resource_thumb_image_url of this ElementStyleForGetTemplateV2Output.
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
:param resource_thumb_image_url: The resource_thumb_image_url of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
537
|
+
:type: str
|
|
538
|
+
"""
|
|
539
|
+
|
|
540
|
+
self._resource_thumb_image_url = resource_thumb_image_url
|
|
541
|
+
|
|
542
|
+
@property
|
|
543
|
+
def resource_type(self):
|
|
544
|
+
"""Gets the resource_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
:return: The resource_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
548
|
+
:rtype: str
|
|
549
|
+
"""
|
|
550
|
+
return self._resource_type
|
|
551
|
+
|
|
552
|
+
@resource_type.setter
|
|
553
|
+
def resource_type(self, resource_type):
|
|
554
|
+
"""Sets the resource_type of this ElementStyleForGetTemplateV2Output.
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
:param resource_type: The resource_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
558
|
+
:type: str
|
|
559
|
+
"""
|
|
560
|
+
|
|
561
|
+
self._resource_type = resource_type
|
|
562
|
+
|
|
237
563
|
@property
|
|
238
564
|
def resource_url(self):
|
|
239
565
|
"""Gets the resource_url of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
@@ -255,6 +581,174 @@ class ElementStyleForGetTemplateV2Output(object):
|
|
|
255
581
|
|
|
256
582
|
self._resource_url = resource_url
|
|
257
583
|
|
|
584
|
+
@property
|
|
585
|
+
def sub_text(self):
|
|
586
|
+
"""Gets the sub_text of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
:return: The sub_text of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
590
|
+
:rtype: str
|
|
591
|
+
"""
|
|
592
|
+
return self._sub_text
|
|
593
|
+
|
|
594
|
+
@sub_text.setter
|
|
595
|
+
def sub_text(self, sub_text):
|
|
596
|
+
"""Sets the sub_text of this ElementStyleForGetTemplateV2Output.
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
:param sub_text: The sub_text of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
600
|
+
:type: str
|
|
601
|
+
"""
|
|
602
|
+
|
|
603
|
+
self._sub_text = sub_text
|
|
604
|
+
|
|
605
|
+
@property
|
|
606
|
+
def thumb_content_type(self):
|
|
607
|
+
"""Gets the thumb_content_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
:return: The thumb_content_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
611
|
+
:rtype: str
|
|
612
|
+
"""
|
|
613
|
+
return self._thumb_content_type
|
|
614
|
+
|
|
615
|
+
@thumb_content_type.setter
|
|
616
|
+
def thumb_content_type(self, thumb_content_type):
|
|
617
|
+
"""Sets the thumb_content_type of this ElementStyleForGetTemplateV2Output.
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
:param thumb_content_type: The thumb_content_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
621
|
+
:type: str
|
|
622
|
+
"""
|
|
623
|
+
|
|
624
|
+
self._thumb_content_type = thumb_content_type
|
|
625
|
+
|
|
626
|
+
@property
|
|
627
|
+
def thumb_image_file_size(self):
|
|
628
|
+
"""Gets the thumb_image_file_size of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
:return: The thumb_image_file_size of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
632
|
+
:rtype: int
|
|
633
|
+
"""
|
|
634
|
+
return self._thumb_image_file_size
|
|
635
|
+
|
|
636
|
+
@thumb_image_file_size.setter
|
|
637
|
+
def thumb_image_file_size(self, thumb_image_file_size):
|
|
638
|
+
"""Sets the thumb_image_file_size of this ElementStyleForGetTemplateV2Output.
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
:param thumb_image_file_size: The thumb_image_file_size of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
642
|
+
:type: int
|
|
643
|
+
"""
|
|
644
|
+
|
|
645
|
+
self._thumb_image_file_size = thumb_image_file_size
|
|
646
|
+
|
|
647
|
+
@property
|
|
648
|
+
def thumb_image_url(self):
|
|
649
|
+
"""Gets the thumb_image_url of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
:return: The thumb_image_url of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
653
|
+
:rtype: str
|
|
654
|
+
"""
|
|
655
|
+
return self._thumb_image_url
|
|
656
|
+
|
|
657
|
+
@thumb_image_url.setter
|
|
658
|
+
def thumb_image_url(self, thumb_image_url):
|
|
659
|
+
"""Sets the thumb_image_url of this ElementStyleForGetTemplateV2Output.
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
:param thumb_image_url: The thumb_image_url of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
663
|
+
:type: str
|
|
664
|
+
"""
|
|
665
|
+
|
|
666
|
+
self._thumb_image_url = thumb_image_url
|
|
667
|
+
|
|
668
|
+
@property
|
|
669
|
+
def thumbnail_resource_content_type(self):
|
|
670
|
+
"""Gets the thumbnail_resource_content_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
:return: The thumbnail_resource_content_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
674
|
+
:rtype: str
|
|
675
|
+
"""
|
|
676
|
+
return self._thumbnail_resource_content_type
|
|
677
|
+
|
|
678
|
+
@thumbnail_resource_content_type.setter
|
|
679
|
+
def thumbnail_resource_content_type(self, thumbnail_resource_content_type):
|
|
680
|
+
"""Sets the thumbnail_resource_content_type of this ElementStyleForGetTemplateV2Output.
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
:param thumbnail_resource_content_type: The thumbnail_resource_content_type of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
684
|
+
:type: str
|
|
685
|
+
"""
|
|
686
|
+
|
|
687
|
+
self._thumbnail_resource_content_type = thumbnail_resource_content_type
|
|
688
|
+
|
|
689
|
+
@property
|
|
690
|
+
def thumbnail_resource_name(self):
|
|
691
|
+
"""Gets the thumbnail_resource_name of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
:return: The thumbnail_resource_name of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
695
|
+
:rtype: str
|
|
696
|
+
"""
|
|
697
|
+
return self._thumbnail_resource_name
|
|
698
|
+
|
|
699
|
+
@thumbnail_resource_name.setter
|
|
700
|
+
def thumbnail_resource_name(self, thumbnail_resource_name):
|
|
701
|
+
"""Sets the thumbnail_resource_name of this ElementStyleForGetTemplateV2Output.
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
:param thumbnail_resource_name: The thumbnail_resource_name of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
705
|
+
:type: str
|
|
706
|
+
"""
|
|
707
|
+
|
|
708
|
+
self._thumbnail_resource_name = thumbnail_resource_name
|
|
709
|
+
|
|
710
|
+
@property
|
|
711
|
+
def thumbnail_resource_size(self):
|
|
712
|
+
"""Gets the thumbnail_resource_size of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
:return: The thumbnail_resource_size of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
716
|
+
:rtype: int
|
|
717
|
+
"""
|
|
718
|
+
return self._thumbnail_resource_size
|
|
719
|
+
|
|
720
|
+
@thumbnail_resource_size.setter
|
|
721
|
+
def thumbnail_resource_size(self, thumbnail_resource_size):
|
|
722
|
+
"""Sets the thumbnail_resource_size of this ElementStyleForGetTemplateV2Output.
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
:param thumbnail_resource_size: The thumbnail_resource_size of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
726
|
+
:type: int
|
|
727
|
+
"""
|
|
728
|
+
|
|
729
|
+
self._thumbnail_resource_size = thumbnail_resource_size
|
|
730
|
+
|
|
731
|
+
@property
|
|
732
|
+
def thumbnail_url(self):
|
|
733
|
+
"""Gets the thumbnail_url of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
:return: The thumbnail_url of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
737
|
+
:rtype: str
|
|
738
|
+
"""
|
|
739
|
+
return self._thumbnail_url
|
|
740
|
+
|
|
741
|
+
@thumbnail_url.setter
|
|
742
|
+
def thumbnail_url(self, thumbnail_url):
|
|
743
|
+
"""Sets the thumbnail_url of this ElementStyleForGetTemplateV2Output.
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
:param thumbnail_url: The thumbnail_url of this ElementStyleForGetTemplateV2Output. # noqa: E501
|
|
747
|
+
:type: str
|
|
748
|
+
"""
|
|
749
|
+
|
|
750
|
+
self._thumbnail_url = thumbnail_url
|
|
751
|
+
|
|
258
752
|
def to_dict(self):
|
|
259
753
|
"""Returns the model properties as a dict"""
|
|
260
754
|
result = {}
|