byteplus-python-sdk-v2 3.0.52__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.52.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/METADATA +1 -1
- {byteplus_python_sdk_v2-3.0.52.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/RECORD +213 -61
- {byteplus_python_sdk_v2-3.0.52.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/WHEEL +1 -1
- {byteplus_python_sdk_v2-3.0.52.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/top_level.txt +2 -0
- byteplussdkarkruntime/resources/content_generation/tasks.py +4 -0
- byteplussdkarkruntime/types/content_generation/content_generation_task.py +3 -0
- byteplussdkarkruntime/types/content_generation/create_task_content_param.py +31 -1
- byteplussdkcen/__init__.py +133 -0
- byteplussdkcen/api/__init__.py +6 -0
- byteplussdkcen/api/cen_api.py +4205 -0
- byteplussdkcen/models/__init__.py +129 -0
- byteplussdkcen/models/associate_cen_bandwidth_package_request.py +151 -0
- byteplussdkcen/models/associate_cen_bandwidth_package_response.py +95 -0
- byteplussdkcen/models/attach_instance_to_cen_request.py +231 -0
- byteplussdkcen/models/attach_instance_to_cen_response.py +95 -0
- byteplussdkcen/models/attached_instance_for_describe_cen_attached_instances_output.py +279 -0
- byteplussdkcen/models/cen_bandwidth_package_for_describe_cen_bandwidth_packages_billing_output.py +279 -0
- byteplussdkcen/models/cen_bandwidth_package_for_describe_cen_bandwidth_packages_output.py +617 -0
- byteplussdkcen/models/cen_for_describe_cens_output.py +357 -0
- byteplussdkcen/models/cen_grant_rule_for_describe_grant_rules_to_cen_output.py +253 -0
- byteplussdkcen/models/cen_grant_rule_for_describe_instance_granted_rules_output.py +253 -0
- byteplussdkcen/models/cen_route_entry_for_describe_cen_route_entries_output.py +331 -0
- byteplussdkcen/models/cen_summary_route_entry_for_describe_cen_summary_route_entries_output.py +253 -0
- byteplussdkcen/models/create_cen_bandwidth_package_request.py +462 -0
- byteplussdkcen/models/create_cen_bandwidth_package_response.py +123 -0
- byteplussdkcen/models/create_cen_inter_region_bandwidth_request.py +231 -0
- byteplussdkcen/models/create_cen_inter_region_bandwidth_response.py +123 -0
- byteplussdkcen/models/create_cen_request.py +230 -0
- byteplussdkcen/models/create_cen_response.py +123 -0
- byteplussdkcen/models/create_cen_service_route_entry_request.py +283 -0
- byteplussdkcen/models/create_cen_service_route_entry_response.py +95 -0
- byteplussdkcen/models/create_cen_summary_route_entry_request.py +177 -0
- byteplussdkcen/models/create_cen_summary_route_entry_response.py +95 -0
- byteplussdkcen/models/delete_cen_bandwidth_package_request.py +124 -0
- byteplussdkcen/models/delete_cen_bandwidth_package_response.py +95 -0
- byteplussdkcen/models/delete_cen_inter_region_bandwidth_request.py +124 -0
- byteplussdkcen/models/delete_cen_inter_region_bandwidth_response.py +95 -0
- byteplussdkcen/models/delete_cen_request.py +124 -0
- byteplussdkcen/models/delete_cen_response.py +95 -0
- byteplussdkcen/models/delete_cen_service_route_entry_request.py +178 -0
- byteplussdkcen/models/delete_cen_service_route_entry_response.py +95 -0
- byteplussdkcen/models/delete_cen_summary_route_entry_request.py +151 -0
- byteplussdkcen/models/delete_cen_summary_route_entry_response.py +95 -0
- byteplussdkcen/models/describe95_traffic_request.py +178 -0
- byteplussdkcen/models/describe95_traffic_response.py +123 -0
- byteplussdkcen/models/describe_cen_attached_instance_attributes_request.py +205 -0
- byteplussdkcen/models/describe_cen_attached_instance_attributes_response.py +279 -0
- byteplussdkcen/models/describe_cen_attached_instances_request.py +253 -0
- byteplussdkcen/models/describe_cen_attached_instances_response.py +201 -0
- byteplussdkcen/models/describe_cen_attributes_request.py +124 -0
- byteplussdkcen/models/describe_cen_attributes_response.py +357 -0
- byteplussdkcen/models/describe_cen_bandwidth_package_attributes_request.py +124 -0
- byteplussdkcen/models/describe_cen_bandwidth_package_attributes_response.py +591 -0
- byteplussdkcen/models/describe_cen_bandwidth_packages_billing_request.py +175 -0
- byteplussdkcen/models/describe_cen_bandwidth_packages_billing_response.py +201 -0
- byteplussdkcen/models/describe_cen_bandwidth_packages_request.py +331 -0
- byteplussdkcen/models/describe_cen_bandwidth_packages_response.py +201 -0
- byteplussdkcen/models/describe_cen_inter_region_bandwidth_attributes_request.py +124 -0
- byteplussdkcen/models/describe_cen_inter_region_bandwidth_attributes_response.py +331 -0
- byteplussdkcen/models/describe_cen_inter_region_bandwidths_request.py +201 -0
- byteplussdkcen/models/describe_cen_inter_region_bandwidths_response.py +201 -0
- byteplussdkcen/models/describe_cen_route_entries_request.py +279 -0
- byteplussdkcen/models/describe_cen_route_entries_response.py +201 -0
- byteplussdkcen/models/describe_cen_service_route_entries_request.py +279 -0
- byteplussdkcen/models/describe_cen_service_route_entries_response.py +201 -0
- byteplussdkcen/models/describe_cen_summary_route_entries_request.py +202 -0
- byteplussdkcen/models/describe_cen_summary_route_entries_response.py +201 -0
- byteplussdkcen/models/describe_cens_request.py +253 -0
- byteplussdkcen/models/describe_cens_response.py +201 -0
- byteplussdkcen/models/describe_grant_rules_to_cen_request.py +260 -0
- byteplussdkcen/models/describe_grant_rules_to_cen_response.py +201 -0
- byteplussdkcen/models/describe_instance_granted_rules_request.py +234 -0
- byteplussdkcen/models/describe_instance_granted_rules_response.py +201 -0
- byteplussdkcen/models/detach_instance_from_cen_request.py +205 -0
- byteplussdkcen/models/detach_instance_from_cen_response.py +95 -0
- byteplussdkcen/models/disassociate_cen_bandwidth_package_request.py +151 -0
- byteplussdkcen/models/disassociate_cen_bandwidth_package_response.py +95 -0
- byteplussdkcen/models/grant_instance_to_cen_request.py +239 -0
- byteplussdkcen/models/grant_instance_to_cen_response.py +95 -0
- byteplussdkcen/models/inter_region_bandwidth_for_describe_cen_inter_region_bandwidths_output.py +331 -0
- byteplussdkcen/models/list_tags_for_resources_request.py +264 -0
- byteplussdkcen/models/list_tags_for_resources_response.py +149 -0
- byteplussdkcen/models/modify_cen_attributes_request.py +176 -0
- byteplussdkcen/models/modify_cen_attributes_response.py +95 -0
- byteplussdkcen/models/modify_cen_bandwidth_package_association_request.py +151 -0
- byteplussdkcen/models/modify_cen_bandwidth_package_association_response.py +95 -0
- byteplussdkcen/models/modify_cen_bandwidth_package_attributes_request.py +214 -0
- byteplussdkcen/models/modify_cen_bandwidth_package_attributes_response.py +95 -0
- byteplussdkcen/models/modify_cen_inter_region_bandwidth_attributes_request.py +176 -0
- byteplussdkcen/models/modify_cen_inter_region_bandwidth_attributes_response.py +95 -0
- byteplussdkcen/models/modify_cen_service_route_entry_attributes_request.py +256 -0
- byteplussdkcen/models/modify_cen_service_route_entry_attributes_response.py +95 -0
- byteplussdkcen/models/publish_cen_route_entry_request.py +232 -0
- byteplussdkcen/models/publish_cen_route_entry_response.py +95 -0
- byteplussdkcen/models/publish_to_instance_for_create_cen_service_route_entry_input.py +175 -0
- byteplussdkcen/models/publish_to_instance_for_describe_cen_service_route_entries_output.py +175 -0
- byteplussdkcen/models/publish_to_instance_for_modify_cen_service_route_entry_attributes_input.py +175 -0
- byteplussdkcen/models/renew_cen_bandwidth_package_request.py +176 -0
- byteplussdkcen/models/renew_cen_bandwidth_package_response.py +95 -0
- byteplussdkcen/models/resource_tag_for_list_tags_for_resources_output.py +201 -0
- byteplussdkcen/models/revoke_instance_from_cen_request.py +239 -0
- byteplussdkcen/models/revoke_instance_from_cen_response.py +95 -0
- byteplussdkcen/models/service_route_entry_for_describe_cen_service_route_entries_output.py +331 -0
- byteplussdkcen/models/set_cen_bandwidth_package_renewal_request.py +203 -0
- byteplussdkcen/models/set_cen_bandwidth_package_renewal_response.py +95 -0
- byteplussdkcen/models/tag_filter_for_describe_cen_bandwidth_packages_input.py +149 -0
- byteplussdkcen/models/tag_filter_for_describe_cens_input.py +149 -0
- byteplussdkcen/models/tag_filter_for_list_tags_for_resources_input.py +149 -0
- byteplussdkcen/models/tag_for_create_cen_bandwidth_package_input.py +149 -0
- byteplussdkcen/models/tag_for_create_cen_input.py +149 -0
- byteplussdkcen/models/tag_for_describe_cen_attributes_output.py +149 -0
- byteplussdkcen/models/tag_for_describe_cen_bandwidth_package_attributes_output.py +149 -0
- byteplussdkcen/models/tag_for_describe_cen_bandwidth_packages_output.py +149 -0
- byteplussdkcen/models/tag_for_describe_cens_output.py +149 -0
- byteplussdkcen/models/tag_for_tag_resources_input.py +150 -0
- byteplussdkcen/models/tag_resources_request.py +183 -0
- byteplussdkcen/models/tag_resources_response.py +95 -0
- byteplussdkcen/models/traffic_data_for_describe95_traffic_output.py +201 -0
- byteplussdkcen/models/traffic_detail_data_for_describe95_traffic_output.py +175 -0
- byteplussdkcen/models/untag_resources_request.py +183 -0
- byteplussdkcen/models/untag_resources_response.py +95 -0
- byteplussdkcen/models/withdraw_cen_route_entry_request.py +232 -0
- byteplussdkcen/models/withdraw_cen_route_entry_response.py +95 -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 +21 -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
- byteplussdkexamples/byteplussdkarkruntime/content_generation_tasks.py +8 -0
- byteplussdktransitrouter/__init__.py +24 -1
- byteplussdktransitrouter/api/transitrouter_api.py +983 -13
- byteplussdktransitrouter/models/__init__.py +24 -1
- byteplussdktransitrouter/models/accept_shared_transit_router_request.py +124 -0
- byteplussdktransitrouter/models/accept_shared_transit_router_response.py +95 -0
- byteplussdktransitrouter/models/accept_transit_router_peer_attachment_request.py +124 -0
- byteplussdktransitrouter/models/accept_transit_router_peer_attachment_response.py +95 -0
- byteplussdktransitrouter/models/create_transit_router_grant_rule_request.py +177 -0
- byteplussdktransitrouter/models/create_transit_router_grant_rule_response.py +95 -0
- byteplussdktransitrouter/models/create_transit_router_peer_attachment_request.py +79 -1
- byteplussdktransitrouter/models/create_transit_router_route_entry_request.py +29 -4
- byteplussdktransitrouter/models/create_transit_router_route_policy_entry_request.py +33 -1
- byteplussdktransitrouter/models/create_transit_router_traffic_qos_queue_entry_request.py +39 -4
- byteplussdktransitrouter/models/create_transit_router_vpn_attachment_request.py +27 -1
- byteplussdktransitrouter/models/delete_transit_router_grant_rule_request.py +151 -0
- byteplussdktransitrouter/models/delete_transit_router_grant_rule_response.py +95 -0
- byteplussdktransitrouter/models/describe95_traffic_request.py +185 -0
- byteplussdktransitrouter/models/describe95_traffic_response.py +123 -0
- byteplussdktransitrouter/models/describe_transit_router_attachments_request.py +3 -0
- byteplussdktransitrouter/models/describe_transit_router_grant_rules_request.py +202 -0
- byteplussdktransitrouter/models/describe_transit_router_grant_rules_response.py +201 -0
- byteplussdktransitrouter/models/describe_transit_router_multicast_domains_response.py +3 -3
- byteplussdktransitrouter/models/describe_transit_router_route_entries_request.py +3 -0
- byteplussdktransitrouter/models/describe_transit_router_route_policy_entries_request.py +3 -0
- byteplussdktransitrouter/models/describe_transit_router_traffic_qos_queue_entries_request.py +3 -0
- byteplussdktransitrouter/models/describe_transit_router_vpn_attachments_request.py +3 -0
- byteplussdktransitrouter/models/describe_transit_routers_request.py +3 -0
- byteplussdktransitrouter/models/enable_transit_router_route_table_propagation_request.py +27 -1
- byteplussdktransitrouter/models/models.py +1522 -1447
- byteplussdktransitrouter/models/modify_transit_router_attributes_request.py +34 -1
- byteplussdktransitrouter/models/modify_transit_router_grant_rule_attributes_request.py +177 -0
- byteplussdktransitrouter/models/modify_transit_router_grant_rule_attributes_response.py +95 -0
- byteplussdktransitrouter/models/modify_transit_router_peer_attachment_attributes_request.py +53 -1
- byteplussdktransitrouter/models/modify_transit_router_route_policy_entry_attributes_request.py +33 -1
- byteplussdktransitrouter/models/modify_transit_router_traffic_qos_queue_entry_attributes_request.py +208 -0
- byteplussdktransitrouter/models/modify_transit_router_traffic_qos_queue_entry_attributes_response.py +95 -0
- byteplussdktransitrouter/models/reject_shared_transit_router_request.py +124 -0
- byteplussdktransitrouter/models/reject_shared_transit_router_response.py +95 -0
- byteplussdktransitrouter/models/reject_transit_router_peer_attachment_request.py +124 -0
- byteplussdktransitrouter/models/reject_transit_router_peer_attachment_response.py +95 -0
- byteplussdktransitrouter/models/traffic_data_for_describe95_traffic_output.py +201 -0
- byteplussdktransitrouter/models/traffic_detail_data_for_describe95_traffic_output.py +175 -0
- byteplussdktransitrouter/models/transit_router_attachment_for_describe_transit_router_attachments_output.py +27 -1
- byteplussdktransitrouter/models/transit_router_attachment_for_describe_transit_router_peer_attachments_output.py +105 -1
- byteplussdktransitrouter/models/transit_router_attachment_for_describe_transit_router_vpn_attachments_output.py +27 -1
- byteplussdktransitrouter/models/transit_router_for_describe_transit_routers_output.py +27 -1
- byteplussdktransitrouter/models/transit_router_grant_rule_for_describe_transit_router_grant_rules_output.py +253 -0
- byteplussdktransitrouter/models/{transit_router_multicast_domains_for_describe_transit_router_multicast_domains_output.py → transit_router_multicast_domain_for_describe_transit_router_multicast_domains_output.py} +33 -33
- byteplussdktransitrouter/models/transit_router_route_entry_for_describe_transit_router_route_entries_output.py +53 -1
- byteplussdkvke/__init__.py +2 -0
- byteplussdkvke/api/vke_api.py +97 -0
- byteplussdkvke/models/__init__.py +2 -0
- byteplussdkvke/models/item_for_list_scaling_policies_output.py +27 -1
- byteplussdkvke/models/scale_node_pool_request.py +204 -0
- byteplussdkvke/models/scale_node_pool_response.py +95 -0
- {byteplus_python_sdk_v2-3.0.52.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/licenses/LICENSE.txt +0 -0
- {byteplus_python_sdk_v2-3.0.52.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/licenses/NOTICE.md +0 -0
|
@@ -33,60 +33,147 @@ class TemplateListForCreateTemplateV2Input(object):
|
|
|
33
33
|
and the value is json key in definition.
|
|
34
34
|
"""
|
|
35
35
|
swagger_types = {
|
|
36
|
+
'audit_status': 'str',
|
|
37
|
+
'background': 'str',
|
|
36
38
|
'card_button_type': 'list[str]',
|
|
37
39
|
'card_header_type': 'str',
|
|
38
40
|
'carousel_body': 'str',
|
|
41
|
+
'fallback_link': 'str',
|
|
39
42
|
'format': 'str',
|
|
43
|
+
'original_text': 'str',
|
|
40
44
|
'page_dto_list': 'list[PageDTOListForCreateTemplateV2Input]',
|
|
45
|
+
'service_no': 'str',
|
|
46
|
+
'sub_account_id': 'str',
|
|
47
|
+
'template_button_list': 'list[TemplateButtonListForCreateTemplateV2Input]',
|
|
41
48
|
'template_type': 'str',
|
|
49
|
+
'usage': 'str',
|
|
42
50
|
'variables_dto_list': 'list[VariablesDTOListForCreateTemplateV2Input]',
|
|
51
|
+
'vendors': 'list[str]',
|
|
43
52
|
'whatsapp_catagory': 'str'
|
|
44
53
|
}
|
|
45
54
|
|
|
46
55
|
attribute_map = {
|
|
56
|
+
'audit_status': 'AuditStatus',
|
|
57
|
+
'background': 'Background',
|
|
47
58
|
'card_button_type': 'CardButtonType',
|
|
48
59
|
'card_header_type': 'CardHeaderType',
|
|
49
60
|
'carousel_body': 'CarouselBody',
|
|
61
|
+
'fallback_link': 'FallbackLink',
|
|
50
62
|
'format': 'Format',
|
|
63
|
+
'original_text': 'OriginalText',
|
|
51
64
|
'page_dto_list': 'PageDTOList',
|
|
65
|
+
'service_no': 'ServiceNo',
|
|
66
|
+
'sub_account_id': 'SubAccountId',
|
|
67
|
+
'template_button_list': 'TemplateButtonList',
|
|
52
68
|
'template_type': 'TemplateType',
|
|
69
|
+
'usage': 'Usage',
|
|
53
70
|
'variables_dto_list': 'VariablesDTOList',
|
|
71
|
+
'vendors': 'Vendors',
|
|
54
72
|
'whatsapp_catagory': 'WhatsappCatagory'
|
|
55
73
|
}
|
|
56
74
|
|
|
57
|
-
def __init__(self, card_button_type=None, card_header_type=None, carousel_body=None, format=None, page_dto_list=None, template_type=None, variables_dto_list=None, whatsapp_catagory=None, _configuration=None): # noqa: E501
|
|
75
|
+
def __init__(self, audit_status=None, background=None, card_button_type=None, card_header_type=None, carousel_body=None, fallback_link=None, format=None, original_text=None, page_dto_list=None, service_no=None, sub_account_id=None, template_button_list=None, template_type=None, usage=None, variables_dto_list=None, vendors=None, whatsapp_catagory=None, _configuration=None): # noqa: E501
|
|
58
76
|
"""TemplateListForCreateTemplateV2Input - a model defined in Swagger""" # noqa: E501
|
|
59
77
|
if _configuration is None:
|
|
60
78
|
_configuration = Configuration()
|
|
61
79
|
self._configuration = _configuration
|
|
62
80
|
|
|
81
|
+
self._audit_status = None
|
|
82
|
+
self._background = None
|
|
63
83
|
self._card_button_type = None
|
|
64
84
|
self._card_header_type = None
|
|
65
85
|
self._carousel_body = None
|
|
86
|
+
self._fallback_link = None
|
|
66
87
|
self._format = None
|
|
88
|
+
self._original_text = None
|
|
67
89
|
self._page_dto_list = None
|
|
90
|
+
self._service_no = None
|
|
91
|
+
self._sub_account_id = None
|
|
92
|
+
self._template_button_list = None
|
|
68
93
|
self._template_type = None
|
|
94
|
+
self._usage = None
|
|
69
95
|
self._variables_dto_list = None
|
|
96
|
+
self._vendors = None
|
|
70
97
|
self._whatsapp_catagory = None
|
|
71
98
|
self.discriminator = None
|
|
72
99
|
|
|
100
|
+
if audit_status is not None:
|
|
101
|
+
self.audit_status = audit_status
|
|
102
|
+
if background is not None:
|
|
103
|
+
self.background = background
|
|
73
104
|
if card_button_type is not None:
|
|
74
105
|
self.card_button_type = card_button_type
|
|
75
106
|
if card_header_type is not None:
|
|
76
107
|
self.card_header_type = card_header_type
|
|
77
108
|
if carousel_body is not None:
|
|
78
109
|
self.carousel_body = carousel_body
|
|
110
|
+
if fallback_link is not None:
|
|
111
|
+
self.fallback_link = fallback_link
|
|
79
112
|
if format is not None:
|
|
80
113
|
self.format = format
|
|
114
|
+
if original_text is not None:
|
|
115
|
+
self.original_text = original_text
|
|
81
116
|
if page_dto_list is not None:
|
|
82
117
|
self.page_dto_list = page_dto_list
|
|
118
|
+
if service_no is not None:
|
|
119
|
+
self.service_no = service_no
|
|
120
|
+
if sub_account_id is not None:
|
|
121
|
+
self.sub_account_id = sub_account_id
|
|
122
|
+
if template_button_list is not None:
|
|
123
|
+
self.template_button_list = template_button_list
|
|
83
124
|
if template_type is not None:
|
|
84
125
|
self.template_type = template_type
|
|
126
|
+
if usage is not None:
|
|
127
|
+
self.usage = usage
|
|
85
128
|
if variables_dto_list is not None:
|
|
86
129
|
self.variables_dto_list = variables_dto_list
|
|
130
|
+
if vendors is not None:
|
|
131
|
+
self.vendors = vendors
|
|
87
132
|
if whatsapp_catagory is not None:
|
|
88
133
|
self.whatsapp_catagory = whatsapp_catagory
|
|
89
134
|
|
|
135
|
+
@property
|
|
136
|
+
def audit_status(self):
|
|
137
|
+
"""Gets the audit_status of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
:return: The audit_status of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
141
|
+
:rtype: str
|
|
142
|
+
"""
|
|
143
|
+
return self._audit_status
|
|
144
|
+
|
|
145
|
+
@audit_status.setter
|
|
146
|
+
def audit_status(self, audit_status):
|
|
147
|
+
"""Sets the audit_status of this TemplateListForCreateTemplateV2Input.
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
:param audit_status: The audit_status of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
151
|
+
:type: str
|
|
152
|
+
"""
|
|
153
|
+
|
|
154
|
+
self._audit_status = audit_status
|
|
155
|
+
|
|
156
|
+
@property
|
|
157
|
+
def background(self):
|
|
158
|
+
"""Gets the background of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
:return: The background of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
162
|
+
:rtype: str
|
|
163
|
+
"""
|
|
164
|
+
return self._background
|
|
165
|
+
|
|
166
|
+
@background.setter
|
|
167
|
+
def background(self, background):
|
|
168
|
+
"""Sets the background of this TemplateListForCreateTemplateV2Input.
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
:param background: The background of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
172
|
+
:type: str
|
|
173
|
+
"""
|
|
174
|
+
|
|
175
|
+
self._background = background
|
|
176
|
+
|
|
90
177
|
@property
|
|
91
178
|
def card_button_type(self):
|
|
92
179
|
"""Gets the card_button_type of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
@@ -150,6 +237,27 @@ class TemplateListForCreateTemplateV2Input(object):
|
|
|
150
237
|
|
|
151
238
|
self._carousel_body = carousel_body
|
|
152
239
|
|
|
240
|
+
@property
|
|
241
|
+
def fallback_link(self):
|
|
242
|
+
"""Gets the fallback_link of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
:return: The fallback_link of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
246
|
+
:rtype: str
|
|
247
|
+
"""
|
|
248
|
+
return self._fallback_link
|
|
249
|
+
|
|
250
|
+
@fallback_link.setter
|
|
251
|
+
def fallback_link(self, fallback_link):
|
|
252
|
+
"""Sets the fallback_link of this TemplateListForCreateTemplateV2Input.
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
:param fallback_link: The fallback_link of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
256
|
+
:type: str
|
|
257
|
+
"""
|
|
258
|
+
|
|
259
|
+
self._fallback_link = fallback_link
|
|
260
|
+
|
|
153
261
|
@property
|
|
154
262
|
def format(self):
|
|
155
263
|
"""Gets the format of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
@@ -171,6 +279,27 @@ class TemplateListForCreateTemplateV2Input(object):
|
|
|
171
279
|
|
|
172
280
|
self._format = format
|
|
173
281
|
|
|
282
|
+
@property
|
|
283
|
+
def original_text(self):
|
|
284
|
+
"""Gets the original_text of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
:return: The original_text of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
288
|
+
:rtype: str
|
|
289
|
+
"""
|
|
290
|
+
return self._original_text
|
|
291
|
+
|
|
292
|
+
@original_text.setter
|
|
293
|
+
def original_text(self, original_text):
|
|
294
|
+
"""Sets the original_text of this TemplateListForCreateTemplateV2Input.
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
:param original_text: The original_text of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
298
|
+
:type: str
|
|
299
|
+
"""
|
|
300
|
+
|
|
301
|
+
self._original_text = original_text
|
|
302
|
+
|
|
174
303
|
@property
|
|
175
304
|
def page_dto_list(self):
|
|
176
305
|
"""Gets the page_dto_list of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
@@ -192,6 +321,69 @@ class TemplateListForCreateTemplateV2Input(object):
|
|
|
192
321
|
|
|
193
322
|
self._page_dto_list = page_dto_list
|
|
194
323
|
|
|
324
|
+
@property
|
|
325
|
+
def service_no(self):
|
|
326
|
+
"""Gets the service_no of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
:return: The service_no of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
330
|
+
:rtype: str
|
|
331
|
+
"""
|
|
332
|
+
return self._service_no
|
|
333
|
+
|
|
334
|
+
@service_no.setter
|
|
335
|
+
def service_no(self, service_no):
|
|
336
|
+
"""Sets the service_no of this TemplateListForCreateTemplateV2Input.
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
:param service_no: The service_no of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
340
|
+
:type: str
|
|
341
|
+
"""
|
|
342
|
+
|
|
343
|
+
self._service_no = service_no
|
|
344
|
+
|
|
345
|
+
@property
|
|
346
|
+
def sub_account_id(self):
|
|
347
|
+
"""Gets the sub_account_id of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
:return: The sub_account_id of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
351
|
+
:rtype: str
|
|
352
|
+
"""
|
|
353
|
+
return self._sub_account_id
|
|
354
|
+
|
|
355
|
+
@sub_account_id.setter
|
|
356
|
+
def sub_account_id(self, sub_account_id):
|
|
357
|
+
"""Sets the sub_account_id of this TemplateListForCreateTemplateV2Input.
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
:param sub_account_id: The sub_account_id of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
361
|
+
:type: str
|
|
362
|
+
"""
|
|
363
|
+
|
|
364
|
+
self._sub_account_id = sub_account_id
|
|
365
|
+
|
|
366
|
+
@property
|
|
367
|
+
def template_button_list(self):
|
|
368
|
+
"""Gets the template_button_list of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
:return: The template_button_list of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
372
|
+
:rtype: list[TemplateButtonListForCreateTemplateV2Input]
|
|
373
|
+
"""
|
|
374
|
+
return self._template_button_list
|
|
375
|
+
|
|
376
|
+
@template_button_list.setter
|
|
377
|
+
def template_button_list(self, template_button_list):
|
|
378
|
+
"""Sets the template_button_list of this TemplateListForCreateTemplateV2Input.
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
:param template_button_list: The template_button_list of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
382
|
+
:type: list[TemplateButtonListForCreateTemplateV2Input]
|
|
383
|
+
"""
|
|
384
|
+
|
|
385
|
+
self._template_button_list = template_button_list
|
|
386
|
+
|
|
195
387
|
@property
|
|
196
388
|
def template_type(self):
|
|
197
389
|
"""Gets the template_type of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
@@ -213,6 +405,27 @@ class TemplateListForCreateTemplateV2Input(object):
|
|
|
213
405
|
|
|
214
406
|
self._template_type = template_type
|
|
215
407
|
|
|
408
|
+
@property
|
|
409
|
+
def usage(self):
|
|
410
|
+
"""Gets the usage of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
:return: The usage of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
414
|
+
:rtype: str
|
|
415
|
+
"""
|
|
416
|
+
return self._usage
|
|
417
|
+
|
|
418
|
+
@usage.setter
|
|
419
|
+
def usage(self, usage):
|
|
420
|
+
"""Sets the usage of this TemplateListForCreateTemplateV2Input.
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
:param usage: The usage of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
424
|
+
:type: str
|
|
425
|
+
"""
|
|
426
|
+
|
|
427
|
+
self._usage = usage
|
|
428
|
+
|
|
216
429
|
@property
|
|
217
430
|
def variables_dto_list(self):
|
|
218
431
|
"""Gets the variables_dto_list of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
@@ -234,6 +447,27 @@ class TemplateListForCreateTemplateV2Input(object):
|
|
|
234
447
|
|
|
235
448
|
self._variables_dto_list = variables_dto_list
|
|
236
449
|
|
|
450
|
+
@property
|
|
451
|
+
def vendors(self):
|
|
452
|
+
"""Gets the vendors of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
:return: The vendors of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
456
|
+
:rtype: list[str]
|
|
457
|
+
"""
|
|
458
|
+
return self._vendors
|
|
459
|
+
|
|
460
|
+
@vendors.setter
|
|
461
|
+
def vendors(self, vendors):
|
|
462
|
+
"""Sets the vendors of this TemplateListForCreateTemplateV2Input.
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
:param vendors: The vendors of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
466
|
+
:type: list[str]
|
|
467
|
+
"""
|
|
468
|
+
|
|
469
|
+
self._vendors = vendors
|
|
470
|
+
|
|
237
471
|
@property
|
|
238
472
|
def whatsapp_catagory(self):
|
|
239
473
|
"""Gets the whatsapp_catagory of this TemplateListForCreateTemplateV2Input. # noqa: E501
|
|
@@ -33,60 +33,147 @@ class TemplateListForGetTemplateV2Output(object):
|
|
|
33
33
|
and the value is json key in definition.
|
|
34
34
|
"""
|
|
35
35
|
swagger_types = {
|
|
36
|
+
'audit_status': 'str',
|
|
37
|
+
'background': 'str',
|
|
36
38
|
'card_button_type': 'list[str]',
|
|
37
39
|
'card_header_type': 'str',
|
|
38
40
|
'carousel_body': 'str',
|
|
41
|
+
'fallback_link': 'str',
|
|
39
42
|
'format': 'str',
|
|
43
|
+
'original_text': 'str',
|
|
40
44
|
'page_dto_list': 'list[PageDTOListForGetTemplateV2Output]',
|
|
45
|
+
'service_no': 'str',
|
|
46
|
+
'sub_account_id': 'str',
|
|
47
|
+
'template_button_list': 'list[TemplateButtonListForGetTemplateV2Output]',
|
|
41
48
|
'template_type': 'str',
|
|
49
|
+
'usage': 'str',
|
|
42
50
|
'variables_dto_list': 'list[VariablesDTOListForGetTemplateV2Output]',
|
|
51
|
+
'vendors': 'list[str]',
|
|
43
52
|
'whatsapp_catagory': 'str'
|
|
44
53
|
}
|
|
45
54
|
|
|
46
55
|
attribute_map = {
|
|
56
|
+
'audit_status': 'AuditStatus',
|
|
57
|
+
'background': 'Background',
|
|
47
58
|
'card_button_type': 'CardButtonType',
|
|
48
59
|
'card_header_type': 'CardHeaderType',
|
|
49
60
|
'carousel_body': 'CarouselBody',
|
|
61
|
+
'fallback_link': 'FallbackLink',
|
|
50
62
|
'format': 'Format',
|
|
63
|
+
'original_text': 'OriginalText',
|
|
51
64
|
'page_dto_list': 'PageDTOList',
|
|
65
|
+
'service_no': 'ServiceNo',
|
|
66
|
+
'sub_account_id': 'SubAccountId',
|
|
67
|
+
'template_button_list': 'TemplateButtonList',
|
|
52
68
|
'template_type': 'TemplateType',
|
|
69
|
+
'usage': 'Usage',
|
|
53
70
|
'variables_dto_list': 'VariablesDTOList',
|
|
71
|
+
'vendors': 'Vendors',
|
|
54
72
|
'whatsapp_catagory': 'WhatsappCatagory'
|
|
55
73
|
}
|
|
56
74
|
|
|
57
|
-
def __init__(self, card_button_type=None, card_header_type=None, carousel_body=None, format=None, page_dto_list=None, template_type=None, variables_dto_list=None, whatsapp_catagory=None, _configuration=None): # noqa: E501
|
|
75
|
+
def __init__(self, audit_status=None, background=None, card_button_type=None, card_header_type=None, carousel_body=None, fallback_link=None, format=None, original_text=None, page_dto_list=None, service_no=None, sub_account_id=None, template_button_list=None, template_type=None, usage=None, variables_dto_list=None, vendors=None, whatsapp_catagory=None, _configuration=None): # noqa: E501
|
|
58
76
|
"""TemplateListForGetTemplateV2Output - a model defined in Swagger""" # noqa: E501
|
|
59
77
|
if _configuration is None:
|
|
60
78
|
_configuration = Configuration()
|
|
61
79
|
self._configuration = _configuration
|
|
62
80
|
|
|
81
|
+
self._audit_status = None
|
|
82
|
+
self._background = None
|
|
63
83
|
self._card_button_type = None
|
|
64
84
|
self._card_header_type = None
|
|
65
85
|
self._carousel_body = None
|
|
86
|
+
self._fallback_link = None
|
|
66
87
|
self._format = None
|
|
88
|
+
self._original_text = None
|
|
67
89
|
self._page_dto_list = None
|
|
90
|
+
self._service_no = None
|
|
91
|
+
self._sub_account_id = None
|
|
92
|
+
self._template_button_list = None
|
|
68
93
|
self._template_type = None
|
|
94
|
+
self._usage = None
|
|
69
95
|
self._variables_dto_list = None
|
|
96
|
+
self._vendors = None
|
|
70
97
|
self._whatsapp_catagory = None
|
|
71
98
|
self.discriminator = None
|
|
72
99
|
|
|
100
|
+
if audit_status is not None:
|
|
101
|
+
self.audit_status = audit_status
|
|
102
|
+
if background is not None:
|
|
103
|
+
self.background = background
|
|
73
104
|
if card_button_type is not None:
|
|
74
105
|
self.card_button_type = card_button_type
|
|
75
106
|
if card_header_type is not None:
|
|
76
107
|
self.card_header_type = card_header_type
|
|
77
108
|
if carousel_body is not None:
|
|
78
109
|
self.carousel_body = carousel_body
|
|
110
|
+
if fallback_link is not None:
|
|
111
|
+
self.fallback_link = fallback_link
|
|
79
112
|
if format is not None:
|
|
80
113
|
self.format = format
|
|
114
|
+
if original_text is not None:
|
|
115
|
+
self.original_text = original_text
|
|
81
116
|
if page_dto_list is not None:
|
|
82
117
|
self.page_dto_list = page_dto_list
|
|
118
|
+
if service_no is not None:
|
|
119
|
+
self.service_no = service_no
|
|
120
|
+
if sub_account_id is not None:
|
|
121
|
+
self.sub_account_id = sub_account_id
|
|
122
|
+
if template_button_list is not None:
|
|
123
|
+
self.template_button_list = template_button_list
|
|
83
124
|
if template_type is not None:
|
|
84
125
|
self.template_type = template_type
|
|
126
|
+
if usage is not None:
|
|
127
|
+
self.usage = usage
|
|
85
128
|
if variables_dto_list is not None:
|
|
86
129
|
self.variables_dto_list = variables_dto_list
|
|
130
|
+
if vendors is not None:
|
|
131
|
+
self.vendors = vendors
|
|
87
132
|
if whatsapp_catagory is not None:
|
|
88
133
|
self.whatsapp_catagory = whatsapp_catagory
|
|
89
134
|
|
|
135
|
+
@property
|
|
136
|
+
def audit_status(self):
|
|
137
|
+
"""Gets the audit_status of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
:return: The audit_status of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
141
|
+
:rtype: str
|
|
142
|
+
"""
|
|
143
|
+
return self._audit_status
|
|
144
|
+
|
|
145
|
+
@audit_status.setter
|
|
146
|
+
def audit_status(self, audit_status):
|
|
147
|
+
"""Sets the audit_status of this TemplateListForGetTemplateV2Output.
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
:param audit_status: The audit_status of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
151
|
+
:type: str
|
|
152
|
+
"""
|
|
153
|
+
|
|
154
|
+
self._audit_status = audit_status
|
|
155
|
+
|
|
156
|
+
@property
|
|
157
|
+
def background(self):
|
|
158
|
+
"""Gets the background of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
:return: The background of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
162
|
+
:rtype: str
|
|
163
|
+
"""
|
|
164
|
+
return self._background
|
|
165
|
+
|
|
166
|
+
@background.setter
|
|
167
|
+
def background(self, background):
|
|
168
|
+
"""Sets the background of this TemplateListForGetTemplateV2Output.
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
:param background: The background of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
172
|
+
:type: str
|
|
173
|
+
"""
|
|
174
|
+
|
|
175
|
+
self._background = background
|
|
176
|
+
|
|
90
177
|
@property
|
|
91
178
|
def card_button_type(self):
|
|
92
179
|
"""Gets the card_button_type of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
@@ -150,6 +237,27 @@ class TemplateListForGetTemplateV2Output(object):
|
|
|
150
237
|
|
|
151
238
|
self._carousel_body = carousel_body
|
|
152
239
|
|
|
240
|
+
@property
|
|
241
|
+
def fallback_link(self):
|
|
242
|
+
"""Gets the fallback_link of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
:return: The fallback_link of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
246
|
+
:rtype: str
|
|
247
|
+
"""
|
|
248
|
+
return self._fallback_link
|
|
249
|
+
|
|
250
|
+
@fallback_link.setter
|
|
251
|
+
def fallback_link(self, fallback_link):
|
|
252
|
+
"""Sets the fallback_link of this TemplateListForGetTemplateV2Output.
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
:param fallback_link: The fallback_link of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
256
|
+
:type: str
|
|
257
|
+
"""
|
|
258
|
+
|
|
259
|
+
self._fallback_link = fallback_link
|
|
260
|
+
|
|
153
261
|
@property
|
|
154
262
|
def format(self):
|
|
155
263
|
"""Gets the format of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
@@ -171,6 +279,27 @@ class TemplateListForGetTemplateV2Output(object):
|
|
|
171
279
|
|
|
172
280
|
self._format = format
|
|
173
281
|
|
|
282
|
+
@property
|
|
283
|
+
def original_text(self):
|
|
284
|
+
"""Gets the original_text of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
:return: The original_text of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
288
|
+
:rtype: str
|
|
289
|
+
"""
|
|
290
|
+
return self._original_text
|
|
291
|
+
|
|
292
|
+
@original_text.setter
|
|
293
|
+
def original_text(self, original_text):
|
|
294
|
+
"""Sets the original_text of this TemplateListForGetTemplateV2Output.
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
:param original_text: The original_text of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
298
|
+
:type: str
|
|
299
|
+
"""
|
|
300
|
+
|
|
301
|
+
self._original_text = original_text
|
|
302
|
+
|
|
174
303
|
@property
|
|
175
304
|
def page_dto_list(self):
|
|
176
305
|
"""Gets the page_dto_list of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
@@ -192,6 +321,69 @@ class TemplateListForGetTemplateV2Output(object):
|
|
|
192
321
|
|
|
193
322
|
self._page_dto_list = page_dto_list
|
|
194
323
|
|
|
324
|
+
@property
|
|
325
|
+
def service_no(self):
|
|
326
|
+
"""Gets the service_no of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
:return: The service_no of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
330
|
+
:rtype: str
|
|
331
|
+
"""
|
|
332
|
+
return self._service_no
|
|
333
|
+
|
|
334
|
+
@service_no.setter
|
|
335
|
+
def service_no(self, service_no):
|
|
336
|
+
"""Sets the service_no of this TemplateListForGetTemplateV2Output.
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
:param service_no: The service_no of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
340
|
+
:type: str
|
|
341
|
+
"""
|
|
342
|
+
|
|
343
|
+
self._service_no = service_no
|
|
344
|
+
|
|
345
|
+
@property
|
|
346
|
+
def sub_account_id(self):
|
|
347
|
+
"""Gets the sub_account_id of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
:return: The sub_account_id of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
351
|
+
:rtype: str
|
|
352
|
+
"""
|
|
353
|
+
return self._sub_account_id
|
|
354
|
+
|
|
355
|
+
@sub_account_id.setter
|
|
356
|
+
def sub_account_id(self, sub_account_id):
|
|
357
|
+
"""Sets the sub_account_id of this TemplateListForGetTemplateV2Output.
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
:param sub_account_id: The sub_account_id of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
361
|
+
:type: str
|
|
362
|
+
"""
|
|
363
|
+
|
|
364
|
+
self._sub_account_id = sub_account_id
|
|
365
|
+
|
|
366
|
+
@property
|
|
367
|
+
def template_button_list(self):
|
|
368
|
+
"""Gets the template_button_list of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
:return: The template_button_list of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
372
|
+
:rtype: list[TemplateButtonListForGetTemplateV2Output]
|
|
373
|
+
"""
|
|
374
|
+
return self._template_button_list
|
|
375
|
+
|
|
376
|
+
@template_button_list.setter
|
|
377
|
+
def template_button_list(self, template_button_list):
|
|
378
|
+
"""Sets the template_button_list of this TemplateListForGetTemplateV2Output.
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
:param template_button_list: The template_button_list of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
382
|
+
:type: list[TemplateButtonListForGetTemplateV2Output]
|
|
383
|
+
"""
|
|
384
|
+
|
|
385
|
+
self._template_button_list = template_button_list
|
|
386
|
+
|
|
195
387
|
@property
|
|
196
388
|
def template_type(self):
|
|
197
389
|
"""Gets the template_type of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
@@ -213,6 +405,27 @@ class TemplateListForGetTemplateV2Output(object):
|
|
|
213
405
|
|
|
214
406
|
self._template_type = template_type
|
|
215
407
|
|
|
408
|
+
@property
|
|
409
|
+
def usage(self):
|
|
410
|
+
"""Gets the usage of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
:return: The usage of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
414
|
+
:rtype: str
|
|
415
|
+
"""
|
|
416
|
+
return self._usage
|
|
417
|
+
|
|
418
|
+
@usage.setter
|
|
419
|
+
def usage(self, usage):
|
|
420
|
+
"""Sets the usage of this TemplateListForGetTemplateV2Output.
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
:param usage: The usage of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
424
|
+
:type: str
|
|
425
|
+
"""
|
|
426
|
+
|
|
427
|
+
self._usage = usage
|
|
428
|
+
|
|
216
429
|
@property
|
|
217
430
|
def variables_dto_list(self):
|
|
218
431
|
"""Gets the variables_dto_list of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
@@ -234,6 +447,27 @@ class TemplateListForGetTemplateV2Output(object):
|
|
|
234
447
|
|
|
235
448
|
self._variables_dto_list = variables_dto_list
|
|
236
449
|
|
|
450
|
+
@property
|
|
451
|
+
def vendors(self):
|
|
452
|
+
"""Gets the vendors of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
:return: The vendors of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
456
|
+
:rtype: list[str]
|
|
457
|
+
"""
|
|
458
|
+
return self._vendors
|
|
459
|
+
|
|
460
|
+
@vendors.setter
|
|
461
|
+
def vendors(self, vendors):
|
|
462
|
+
"""Sets the vendors of this TemplateListForGetTemplateV2Output.
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
:param vendors: The vendors of this TemplateListForGetTemplateV2Output. # noqa: E501
|
|
466
|
+
:type: list[str]
|
|
467
|
+
"""
|
|
468
|
+
|
|
469
|
+
self._vendors = vendors
|
|
470
|
+
|
|
237
471
|
@property
|
|
238
472
|
def whatsapp_catagory(self):
|
|
239
473
|
"""Gets the whatsapp_catagory of this TemplateListForGetTemplateV2Output. # noqa: E501
|