byteplus-python-sdk-v2 3.0.45__py2.py3-none-any.whl → 3.0.47__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.45.dist-info → byteplus_python_sdk_v2-3.0.47.dist-info}/METADATA +1 -1
- {byteplus_python_sdk_v2-3.0.45.dist-info → byteplus_python_sdk_v2-3.0.47.dist-info}/RECORD +72 -21
- {byteplus_python_sdk_v2-3.0.45.dist-info → byteplus_python_sdk_v2-3.0.47.dist-info}/top_level.txt +1 -0
- byteplussdkbilling/models/list_for_list_amortized_cost_bill_daily_output.py +27 -1
- byteplussdkbilling/models/list_for_list_amortized_cost_bill_detail_output.py +53 -1
- byteplussdkbilling/models/list_for_list_amortized_cost_bill_monthly_output.py +53 -1
- byteplussdkbilling/models/list_for_list_bill_detail_output.py +79 -1
- byteplussdkbilling/models/list_for_list_coupons_output.py +29 -3
- byteplussdkbilling/models/list_for_list_split_bill_detail_output.py +79 -1
- 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
- byteplussdkcore/feature/rds/connect_utils.py +1 -1
- byteplussdkcore/interceptor/interceptors/sign_request_interceptor.py +1 -0
- byteplussdkcpaas/__init__.py +56 -0
- byteplussdkcpaas/api/__init__.py +6 -0
- byteplussdkcpaas/api/cpaas_api.py +519 -0
- byteplussdkcpaas/models/__init__.py +52 -0
- byteplussdkcpaas/models/action_for_create_template_v2_input.py +201 -0
- byteplussdkcpaas/models/action_for_get_template_v2_output.py +201 -0
- byteplussdkcpaas/models/create_template_v2_request.py +306 -0
- byteplussdkcpaas/models/create_template_v2_response.py +175 -0
- byteplussdkcpaas/models/data_for_create_template_v2_output.py +149 -0
- byteplussdkcpaas/models/data_for_get_template_v2_output.py +253 -0
- byteplussdkcpaas/models/data_for_list_template_v2_output.py +305 -0
- byteplussdkcpaas/models/data_for_send_batch_message_output.py +123 -0
- byteplussdkcpaas/models/data_for_send_message_output.py +123 -0
- byteplussdkcpaas/models/element_style_for_create_template_v2_input.py +305 -0
- byteplussdkcpaas/models/element_style_for_get_template_v2_output.py +305 -0
- byteplussdkcpaas/models/extend_attrs_for_create_template_v2_input.py +227 -0
- byteplussdkcpaas/models/extend_attrs_for_get_template_v2_output.py +227 -0
- byteplussdkcpaas/models/get_template_v2_request.py +150 -0
- byteplussdkcpaas/models/get_template_v2_response.py +201 -0
- byteplussdkcpaas/models/list_template_v2_request.py +255 -0
- byteplussdkcpaas/models/list_template_v2_response.py +201 -0
- byteplussdkcpaas/models/page_dto_list_for_create_template_v2_input.py +175 -0
- byteplussdkcpaas/models/page_dto_list_for_get_template_v2_output.py +175 -0
- byteplussdkcpaas/models/page_element_dto_list_for_create_template_v2_input.py +149 -0
- byteplussdkcpaas/models/page_element_dto_list_for_get_template_v2_output.py +149 -0
- byteplussdkcpaas/models/page_link_list_for_create_template_v2_input.py +227 -0
- byteplussdkcpaas/models/page_link_list_for_get_template_v2_output.py +227 -0
- byteplussdkcpaas/models/priority_for_send_batch_message_input.py +279 -0
- byteplussdkcpaas/models/priority_for_send_message_input.py +279 -0
- byteplussdkcpaas/models/receiver_for_send_batch_message_input.py +149 -0
- byteplussdkcpaas/models/send_batch_message_request.py +281 -0
- byteplussdkcpaas/models/send_batch_message_response.py +175 -0
- byteplussdkcpaas/models/send_message_request.py +281 -0
- byteplussdkcpaas/models/send_message_response.py +175 -0
- byteplussdkcpaas/models/template_list_for_create_template_v2_input.py +305 -0
- byteplussdkcpaas/models/template_list_for_get_template_v2_output.py +305 -0
- byteplussdkcpaas/models/template_status_for_list_template_v2_output.py +175 -0
- byteplussdkcpaas/models/variables_dto_list_for_create_template_v2_input.py +227 -0
- byteplussdkcpaas/models/variables_dto_list_for_get_template_v2_output.py +227 -0
- byteplussdkrdsmssql/__init__.py +12 -0
- byteplussdkrdsmssql/api/rds_mssql_api.py +485 -0
- byteplussdkrdsmssql/models/__init__.py +12 -0
- byteplussdkrdsmssql/models/db_status_for_describe_db_instance_tde_output.py +149 -0
- byteplussdkrdsmssql/models/db_status_for_modify_db_instance_tde_input.py +149 -0
- byteplussdkrdsmssql/models/describe_db_instance_ssl_request.py +124 -0
- byteplussdkrdsmssql/models/describe_db_instance_ssl_response.py +331 -0
- byteplussdkrdsmssql/models/describe_db_instance_tde_request.py +124 -0
- byteplussdkrdsmssql/models/describe_db_instance_tde_response.py +201 -0
- byteplussdkrdsmssql/models/download_ssl_certificate_request.py +124 -0
- byteplussdkrdsmssql/models/download_ssl_certificate_response.py +123 -0
- byteplussdkrdsmssql/models/modify_db_instance_ssl_request.py +229 -0
- byteplussdkrdsmssql/models/modify_db_instance_ssl_response.py +95 -0
- byteplussdkrdsmssql/models/modify_db_instance_tde_request.py +296 -0
- byteplussdkrdsmssql/models/modify_db_instance_tde_response.py +95 -0
- {byteplus_python_sdk_v2-3.0.45.dist-info → byteplus_python_sdk_v2-3.0.47.dist-info}/WHEEL +0 -0
- {byteplus_python_sdk_v2-3.0.45.dist-info → byteplus_python_sdk_v2-3.0.47.dist-info}/licenses/LICENSE.txt +0 -0
- {byteplus_python_sdk_v2-3.0.45.dist-info → byteplus_python_sdk_v2-3.0.47.dist-info}/licenses/NOTICE.md +0 -0
|
@@ -42,6 +42,7 @@ class ListForListBillDetailOutput(object):
|
|
|
42
42
|
'billing_mode': 'str',
|
|
43
43
|
'busi_period': 'str',
|
|
44
44
|
'business_mode': 'str',
|
|
45
|
+
'charge_item_code': 'str',
|
|
45
46
|
'config_name': 'str',
|
|
46
47
|
'configuration_code': 'str',
|
|
47
48
|
'count': 'str',
|
|
@@ -90,6 +91,7 @@ class ListForListBillDetailOutput(object):
|
|
|
90
91
|
'pretax_amount': 'str',
|
|
91
92
|
'pretax_real_value': 'str',
|
|
92
93
|
'price': 'str',
|
|
94
|
+
'price_factor': 'str',
|
|
93
95
|
'price_interval': 'str',
|
|
94
96
|
'price_unit': 'str',
|
|
95
97
|
'product': 'str',
|
|
@@ -103,6 +105,7 @@ class ListForListBillDetailOutput(object):
|
|
|
103
105
|
'resource_id': 'str',
|
|
104
106
|
'round_amount': 'float',
|
|
105
107
|
'saving_plan_deduction_discount_amount': 'str',
|
|
108
|
+
'saving_plan_deduction_discount_total_amount': 'str',
|
|
106
109
|
'saving_plan_deduction_sp_id': 'str',
|
|
107
110
|
'saving_plan_original_amount': 'str',
|
|
108
111
|
'seller_customer_name': 'str',
|
|
@@ -141,6 +144,7 @@ class ListForListBillDetailOutput(object):
|
|
|
141
144
|
'billing_mode': 'BillingMode',
|
|
142
145
|
'busi_period': 'BusiPeriod',
|
|
143
146
|
'business_mode': 'BusinessMode',
|
|
147
|
+
'charge_item_code': 'ChargeItemCode',
|
|
144
148
|
'config_name': 'ConfigName',
|
|
145
149
|
'configuration_code': 'ConfigurationCode',
|
|
146
150
|
'count': 'Count',
|
|
@@ -189,6 +193,7 @@ class ListForListBillDetailOutput(object):
|
|
|
189
193
|
'pretax_amount': 'PretaxAmount',
|
|
190
194
|
'pretax_real_value': 'PretaxRealValue',
|
|
191
195
|
'price': 'Price',
|
|
196
|
+
'price_factor': 'PriceFactor',
|
|
192
197
|
'price_interval': 'PriceInterval',
|
|
193
198
|
'price_unit': 'PriceUnit',
|
|
194
199
|
'product': 'Product',
|
|
@@ -202,6 +207,7 @@ class ListForListBillDetailOutput(object):
|
|
|
202
207
|
'resource_id': 'ResourceID',
|
|
203
208
|
'round_amount': 'RoundAmount',
|
|
204
209
|
'saving_plan_deduction_discount_amount': 'SavingPlanDeductionDiscountAmount',
|
|
210
|
+
'saving_plan_deduction_discount_total_amount': 'SavingPlanDeductionDiscountTotalAmount',
|
|
205
211
|
'saving_plan_deduction_sp_id': 'SavingPlanDeductionSpID',
|
|
206
212
|
'saving_plan_original_amount': 'SavingPlanOriginalAmount',
|
|
207
213
|
'seller_customer_name': 'SellerCustomerName',
|
|
@@ -230,7 +236,7 @@ class ListForListBillDetailOutput(object):
|
|
|
230
236
|
'zone_code': 'ZoneCode'
|
|
231
237
|
}
|
|
232
238
|
|
|
233
|
-
def __init__(self, bill_category=None, bill_detail_id=None, bill_id=None, bill_period=None, billing_function=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, config_name=None, configuration_code=None, count=None, country_region=None, coupon_amount=None, credit_carried_amount=None, currency=None, currency_settlement=None, deduction_count=None, deduction_use_duration=None, discount_bill_amount=None, discount_biz_billing_function=None, discount_biz_measure_interval=None, discount_biz_unit_price=None, discount_biz_unit_price_interval=None, discount_info=None, effective_factor=None, element=None, element_code=None, exchange_rate=None, expand_field=None, expense_begin_time=None, expense_date=None, expense_end_time=None, factor=None, factor_code=None, formula=None, instance_name=None, instance_no=None, main_contract_number=None, market_price=None, measure_interval=None, original_bill_amount=None, original_order_no=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, posttax_amount=None, pre_tax_payable_amount=None, preferential_bill_amount=None, pretax_amount=None, pretax_real_value=None, price=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, real_value=None, region=None, region_code=None, reservation_instance=None, resource_id=None, round_amount=None, saving_plan_deduction_discount_amount=None, saving_plan_deduction_sp_id=None, saving_plan_original_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, selling_mode=None, settle_payable_amount=None, settle_posttax_amount=None, settle_pre_tax_payable_amount=None, settle_pretax_amount=None, settle_pretax_real_value=None, settle_real_value=None, settle_tax=None, settlement_type=None, solution_zh=None, subject_name=None, tag=None, tax=None, tax_rate=None, trade_time=None, unit=None, unpaid_amount=None, use_duration=None, use_duration_unit=None, zone=None, zone_code=None, _configuration=None): # noqa: E501
|
|
239
|
+
def __init__(self, bill_category=None, bill_detail_id=None, bill_id=None, bill_period=None, billing_function=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, charge_item_code=None, config_name=None, configuration_code=None, count=None, country_region=None, coupon_amount=None, credit_carried_amount=None, currency=None, currency_settlement=None, deduction_count=None, deduction_use_duration=None, discount_bill_amount=None, discount_biz_billing_function=None, discount_biz_measure_interval=None, discount_biz_unit_price=None, discount_biz_unit_price_interval=None, discount_info=None, effective_factor=None, element=None, element_code=None, exchange_rate=None, expand_field=None, expense_begin_time=None, expense_date=None, expense_end_time=None, factor=None, factor_code=None, formula=None, instance_name=None, instance_no=None, main_contract_number=None, market_price=None, measure_interval=None, original_bill_amount=None, original_order_no=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, posttax_amount=None, pre_tax_payable_amount=None, preferential_bill_amount=None, pretax_amount=None, pretax_real_value=None, price=None, price_factor=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, real_value=None, region=None, region_code=None, reservation_instance=None, resource_id=None, round_amount=None, saving_plan_deduction_discount_amount=None, saving_plan_deduction_discount_total_amount=None, saving_plan_deduction_sp_id=None, saving_plan_original_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, selling_mode=None, settle_payable_amount=None, settle_posttax_amount=None, settle_pre_tax_payable_amount=None, settle_pretax_amount=None, settle_pretax_real_value=None, settle_real_value=None, settle_tax=None, settlement_type=None, solution_zh=None, subject_name=None, tag=None, tax=None, tax_rate=None, trade_time=None, unit=None, unpaid_amount=None, use_duration=None, use_duration_unit=None, zone=None, zone_code=None, _configuration=None): # noqa: E501
|
|
234
240
|
"""ListForListBillDetailOutput - a model defined in Swagger""" # noqa: E501
|
|
235
241
|
if _configuration is None:
|
|
236
242
|
_configuration = Configuration()
|
|
@@ -245,6 +251,7 @@ class ListForListBillDetailOutput(object):
|
|
|
245
251
|
self._billing_mode = None
|
|
246
252
|
self._busi_period = None
|
|
247
253
|
self._business_mode = None
|
|
254
|
+
self._charge_item_code = None
|
|
248
255
|
self._config_name = None
|
|
249
256
|
self._configuration_code = None
|
|
250
257
|
self._count = None
|
|
@@ -293,6 +300,7 @@ class ListForListBillDetailOutput(object):
|
|
|
293
300
|
self._pretax_amount = None
|
|
294
301
|
self._pretax_real_value = None
|
|
295
302
|
self._price = None
|
|
303
|
+
self._price_factor = None
|
|
296
304
|
self._price_interval = None
|
|
297
305
|
self._price_unit = None
|
|
298
306
|
self._product = None
|
|
@@ -306,6 +314,7 @@ class ListForListBillDetailOutput(object):
|
|
|
306
314
|
self._resource_id = None
|
|
307
315
|
self._round_amount = None
|
|
308
316
|
self._saving_plan_deduction_discount_amount = None
|
|
317
|
+
self._saving_plan_deduction_discount_total_amount = None
|
|
309
318
|
self._saving_plan_deduction_sp_id = None
|
|
310
319
|
self._saving_plan_original_amount = None
|
|
311
320
|
self._seller_customer_name = None
|
|
@@ -352,6 +361,8 @@ class ListForListBillDetailOutput(object):
|
|
|
352
361
|
self.busi_period = busi_period
|
|
353
362
|
if business_mode is not None:
|
|
354
363
|
self.business_mode = business_mode
|
|
364
|
+
if charge_item_code is not None:
|
|
365
|
+
self.charge_item_code = charge_item_code
|
|
355
366
|
if config_name is not None:
|
|
356
367
|
self.config_name = config_name
|
|
357
368
|
if configuration_code is not None:
|
|
@@ -448,6 +459,8 @@ class ListForListBillDetailOutput(object):
|
|
|
448
459
|
self.pretax_real_value = pretax_real_value
|
|
449
460
|
if price is not None:
|
|
450
461
|
self.price = price
|
|
462
|
+
if price_factor is not None:
|
|
463
|
+
self.price_factor = price_factor
|
|
451
464
|
if price_interval is not None:
|
|
452
465
|
self.price_interval = price_interval
|
|
453
466
|
if price_unit is not None:
|
|
@@ -474,6 +487,8 @@ class ListForListBillDetailOutput(object):
|
|
|
474
487
|
self.round_amount = round_amount
|
|
475
488
|
if saving_plan_deduction_discount_amount is not None:
|
|
476
489
|
self.saving_plan_deduction_discount_amount = saving_plan_deduction_discount_amount
|
|
490
|
+
if saving_plan_deduction_discount_total_amount is not None:
|
|
491
|
+
self.saving_plan_deduction_discount_total_amount = saving_plan_deduction_discount_total_amount
|
|
477
492
|
if saving_plan_deduction_sp_id is not None:
|
|
478
493
|
self.saving_plan_deduction_sp_id = saving_plan_deduction_sp_id
|
|
479
494
|
if saving_plan_original_amount is not None:
|
|
@@ -716,6 +731,27 @@ class ListForListBillDetailOutput(object):
|
|
|
716
731
|
|
|
717
732
|
self._business_mode = business_mode
|
|
718
733
|
|
|
734
|
+
@property
|
|
735
|
+
def charge_item_code(self):
|
|
736
|
+
"""Gets the charge_item_code of this ListForListBillDetailOutput. # noqa: E501
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
:return: The charge_item_code of this ListForListBillDetailOutput. # noqa: E501
|
|
740
|
+
:rtype: str
|
|
741
|
+
"""
|
|
742
|
+
return self._charge_item_code
|
|
743
|
+
|
|
744
|
+
@charge_item_code.setter
|
|
745
|
+
def charge_item_code(self, charge_item_code):
|
|
746
|
+
"""Sets the charge_item_code of this ListForListBillDetailOutput.
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
:param charge_item_code: The charge_item_code of this ListForListBillDetailOutput. # noqa: E501
|
|
750
|
+
:type: str
|
|
751
|
+
"""
|
|
752
|
+
|
|
753
|
+
self._charge_item_code = charge_item_code
|
|
754
|
+
|
|
719
755
|
@property
|
|
720
756
|
def config_name(self):
|
|
721
757
|
"""Gets the config_name of this ListForListBillDetailOutput. # noqa: E501
|
|
@@ -1724,6 +1760,27 @@ class ListForListBillDetailOutput(object):
|
|
|
1724
1760
|
|
|
1725
1761
|
self._price = price
|
|
1726
1762
|
|
|
1763
|
+
@property
|
|
1764
|
+
def price_factor(self):
|
|
1765
|
+
"""Gets the price_factor of this ListForListBillDetailOutput. # noqa: E501
|
|
1766
|
+
|
|
1767
|
+
|
|
1768
|
+
:return: The price_factor of this ListForListBillDetailOutput. # noqa: E501
|
|
1769
|
+
:rtype: str
|
|
1770
|
+
"""
|
|
1771
|
+
return self._price_factor
|
|
1772
|
+
|
|
1773
|
+
@price_factor.setter
|
|
1774
|
+
def price_factor(self, price_factor):
|
|
1775
|
+
"""Sets the price_factor of this ListForListBillDetailOutput.
|
|
1776
|
+
|
|
1777
|
+
|
|
1778
|
+
:param price_factor: The price_factor of this ListForListBillDetailOutput. # noqa: E501
|
|
1779
|
+
:type: str
|
|
1780
|
+
"""
|
|
1781
|
+
|
|
1782
|
+
self._price_factor = price_factor
|
|
1783
|
+
|
|
1727
1784
|
@property
|
|
1728
1785
|
def price_interval(self):
|
|
1729
1786
|
"""Gets the price_interval of this ListForListBillDetailOutput. # noqa: E501
|
|
@@ -1997,6 +2054,27 @@ class ListForListBillDetailOutput(object):
|
|
|
1997
2054
|
|
|
1998
2055
|
self._saving_plan_deduction_discount_amount = saving_plan_deduction_discount_amount
|
|
1999
2056
|
|
|
2057
|
+
@property
|
|
2058
|
+
def saving_plan_deduction_discount_total_amount(self):
|
|
2059
|
+
"""Gets the saving_plan_deduction_discount_total_amount of this ListForListBillDetailOutput. # noqa: E501
|
|
2060
|
+
|
|
2061
|
+
|
|
2062
|
+
:return: The saving_plan_deduction_discount_total_amount of this ListForListBillDetailOutput. # noqa: E501
|
|
2063
|
+
:rtype: str
|
|
2064
|
+
"""
|
|
2065
|
+
return self._saving_plan_deduction_discount_total_amount
|
|
2066
|
+
|
|
2067
|
+
@saving_plan_deduction_discount_total_amount.setter
|
|
2068
|
+
def saving_plan_deduction_discount_total_amount(self, saving_plan_deduction_discount_total_amount):
|
|
2069
|
+
"""Sets the saving_plan_deduction_discount_total_amount of this ListForListBillDetailOutput.
|
|
2070
|
+
|
|
2071
|
+
|
|
2072
|
+
:param saving_plan_deduction_discount_total_amount: The saving_plan_deduction_discount_total_amount of this ListForListBillDetailOutput. # noqa: E501
|
|
2073
|
+
:type: str
|
|
2074
|
+
"""
|
|
2075
|
+
|
|
2076
|
+
self._saving_plan_deduction_discount_total_amount = saving_plan_deduction_discount_total_amount
|
|
2077
|
+
|
|
2000
2078
|
@property
|
|
2001
2079
|
def saving_plan_deduction_sp_id(self):
|
|
2002
2080
|
"""Gets the saving_plan_deduction_sp_id of this ListForListBillDetailOutput. # noqa: E501
|
|
@@ -48,7 +48,8 @@ class ListForListCouponsOutput(object):
|
|
|
48
48
|
'remark': 'str',
|
|
49
49
|
'status': 'int',
|
|
50
50
|
'total_amount': 'float',
|
|
51
|
-
'usage_limit': 'int'
|
|
51
|
+
'usage_limit': 'int',
|
|
52
|
+
'void_reason': 'str'
|
|
52
53
|
}
|
|
53
54
|
|
|
54
55
|
attribute_map = {
|
|
@@ -67,10 +68,11 @@ class ListForListCouponsOutput(object):
|
|
|
67
68
|
'remark': 'Remark',
|
|
68
69
|
'status': 'Status',
|
|
69
70
|
'total_amount': 'TotalAmount',
|
|
70
|
-
'usage_limit': 'UsageLimit'
|
|
71
|
+
'usage_limit': 'UsageLimit',
|
|
72
|
+
'void_reason': 'VoidReason'
|
|
71
73
|
}
|
|
72
74
|
|
|
73
|
-
def __init__(self, account_id=None, acquire_time=None, amount_limit=None, assigned_owner_id_list=None, begin_time=None, coupon_id=None, coupon_name=None, expired_time=None, order_type_limit=None, pay_type_limit=None, product_limit_list=None, remaining_amount=None, remark=None, status=None, total_amount=None, usage_limit=None, _configuration=None): # noqa: E501
|
|
75
|
+
def __init__(self, account_id=None, acquire_time=None, amount_limit=None, assigned_owner_id_list=None, begin_time=None, coupon_id=None, coupon_name=None, expired_time=None, order_type_limit=None, pay_type_limit=None, product_limit_list=None, remaining_amount=None, remark=None, status=None, total_amount=None, usage_limit=None, void_reason=None, _configuration=None): # noqa: E501
|
|
74
76
|
"""ListForListCouponsOutput - a model defined in Swagger""" # noqa: E501
|
|
75
77
|
if _configuration is None:
|
|
76
78
|
_configuration = Configuration()
|
|
@@ -92,6 +94,7 @@ class ListForListCouponsOutput(object):
|
|
|
92
94
|
self._status = None
|
|
93
95
|
self._total_amount = None
|
|
94
96
|
self._usage_limit = None
|
|
97
|
+
self._void_reason = None
|
|
95
98
|
self.discriminator = None
|
|
96
99
|
|
|
97
100
|
if account_id is not None:
|
|
@@ -126,6 +129,8 @@ class ListForListCouponsOutput(object):
|
|
|
126
129
|
self.total_amount = total_amount
|
|
127
130
|
if usage_limit is not None:
|
|
128
131
|
self.usage_limit = usage_limit
|
|
132
|
+
if void_reason is not None:
|
|
133
|
+
self.void_reason = void_reason
|
|
129
134
|
|
|
130
135
|
@property
|
|
131
136
|
def account_id(self):
|
|
@@ -463,6 +468,27 @@ class ListForListCouponsOutput(object):
|
|
|
463
468
|
|
|
464
469
|
self._usage_limit = usage_limit
|
|
465
470
|
|
|
471
|
+
@property
|
|
472
|
+
def void_reason(self):
|
|
473
|
+
"""Gets the void_reason of this ListForListCouponsOutput. # noqa: E501
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
:return: The void_reason of this ListForListCouponsOutput. # noqa: E501
|
|
477
|
+
:rtype: str
|
|
478
|
+
"""
|
|
479
|
+
return self._void_reason
|
|
480
|
+
|
|
481
|
+
@void_reason.setter
|
|
482
|
+
def void_reason(self, void_reason):
|
|
483
|
+
"""Sets the void_reason of this ListForListCouponsOutput.
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
:param void_reason: The void_reason of this ListForListCouponsOutput. # noqa: E501
|
|
487
|
+
:type: str
|
|
488
|
+
"""
|
|
489
|
+
|
|
490
|
+
self._void_reason = void_reason
|
|
491
|
+
|
|
466
492
|
def to_dict(self):
|
|
467
493
|
"""Returns the model properties as a dict"""
|
|
468
494
|
result = {}
|
|
@@ -42,6 +42,7 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
42
42
|
'billing_mode': 'str',
|
|
43
43
|
'busi_period': 'str',
|
|
44
44
|
'business_mode': 'str',
|
|
45
|
+
'charge_item_code': 'str',
|
|
45
46
|
'config_name': 'str',
|
|
46
47
|
'configuration_code': 'str',
|
|
47
48
|
'cost_unit': 'str',
|
|
@@ -63,6 +64,7 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
63
64
|
'element_code': 'str',
|
|
64
65
|
'exchange_rate': 'str',
|
|
65
66
|
'expand_field': 'str',
|
|
67
|
+
'expense_date': 'str',
|
|
66
68
|
'expense_time': 'str',
|
|
67
69
|
'factor': 'str',
|
|
68
70
|
'factor_code': 'str',
|
|
@@ -100,6 +102,7 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
100
102
|
'resource_id': 'str',
|
|
101
103
|
'round_amount': 'str',
|
|
102
104
|
'saving_plan_deduction_discount_amount': 'str',
|
|
105
|
+
'saving_plan_deduction_discount_total_amount': 'str',
|
|
103
106
|
'saving_plan_deduction_sp_id': 'str',
|
|
104
107
|
'saving_plan_original_amount': 'str',
|
|
105
108
|
'seller_customer_name': 'str',
|
|
@@ -143,6 +146,7 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
143
146
|
'billing_mode': 'BillingMode',
|
|
144
147
|
'busi_period': 'BusiPeriod',
|
|
145
148
|
'business_mode': 'BusinessMode',
|
|
149
|
+
'charge_item_code': 'ChargeItemCode',
|
|
146
150
|
'config_name': 'ConfigName',
|
|
147
151
|
'configuration_code': 'ConfigurationCode',
|
|
148
152
|
'cost_unit': 'CostUnit',
|
|
@@ -164,6 +168,7 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
164
168
|
'element_code': 'ElementCode',
|
|
165
169
|
'exchange_rate': 'ExchangeRate',
|
|
166
170
|
'expand_field': 'ExpandField',
|
|
171
|
+
'expense_date': 'ExpenseDate',
|
|
167
172
|
'expense_time': 'ExpenseTime',
|
|
168
173
|
'factor': 'Factor',
|
|
169
174
|
'factor_code': 'FactorCode',
|
|
@@ -201,6 +206,7 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
201
206
|
'resource_id': 'ResourceID',
|
|
202
207
|
'round_amount': 'RoundAmount',
|
|
203
208
|
'saving_plan_deduction_discount_amount': 'SavingPlanDeductionDiscountAmount',
|
|
209
|
+
'saving_plan_deduction_discount_total_amount': 'SavingPlanDeductionDiscountTotalAmount',
|
|
204
210
|
'saving_plan_deduction_sp_id': 'SavingPlanDeductionSpID',
|
|
205
211
|
'saving_plan_original_amount': 'SavingPlanOriginalAmount',
|
|
206
212
|
'seller_customer_name': 'SellerCustomerName',
|
|
@@ -234,7 +240,7 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
234
240
|
'zone_code': 'ZoneCode'
|
|
235
241
|
}
|
|
236
242
|
|
|
237
|
-
def __init__(self, bill_category=None, bill_detail_id=None, bill_id=None, bill_period=None, billing_function=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, config_name=None, configuration_code=None, cost_unit=None, count=None, country_region=None, coupon_deduction_amount=None, credit_carried_amount=None, currency=None, currency_settlement=None, deduction_count=None, discount_bill_amount=None, discount_biz_billing_function=None, discount_biz_measure_interval=None, discount_biz_unit_price=None, discount_biz_unit_price_interval=None, discount_info=None, effective_factor=None, element=None, element_code=None, exchange_rate=None, expand_field=None, expense_time=None, factor=None, factor_code=None, instance_name=None, instance_no=None, main_contract_number=None, market_price=None, measure_interval=None, original_bill_amount=None, original_order_no=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, posttax_amount=None, pre_tax_payable_amount=None, preferential_bill_amount=None, pretax_amount=None, pretax_real_value=None, price=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, real_value=None, region=None, region_code=None, reservation_instance=None, resource_id=None, round_amount=None, saving_plan_deduction_discount_amount=None, saving_plan_deduction_sp_id=None, saving_plan_original_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, selling_mode=None, settle_payable_amount=None, settle_posttax_amount=None, settle_pre_tax_payable_amount=None, settle_pretax_amount=None, settle_pretax_real_value=None, settle_real_value=None, settle_tax=None, settlement_type=None, solution_zh=None, split_bill_detail_id=None, split_item_amount=None, split_item_id=None, split_item_name=None, split_item_ratio=None, subject_name=None, tag=None, tax=None, tax_rate=None, trade_time=None, unit=None, unpaid_amount=None, use_duration=None, use_duration_unit=None, zone=None, zone_code=None, _configuration=None): # noqa: E501
|
|
243
|
+
def __init__(self, bill_category=None, bill_detail_id=None, bill_id=None, bill_period=None, billing_function=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, charge_item_code=None, config_name=None, configuration_code=None, cost_unit=None, count=None, country_region=None, coupon_deduction_amount=None, credit_carried_amount=None, currency=None, currency_settlement=None, deduction_count=None, discount_bill_amount=None, discount_biz_billing_function=None, discount_biz_measure_interval=None, discount_biz_unit_price=None, discount_biz_unit_price_interval=None, discount_info=None, effective_factor=None, element=None, element_code=None, exchange_rate=None, expand_field=None, expense_date=None, expense_time=None, factor=None, factor_code=None, instance_name=None, instance_no=None, main_contract_number=None, market_price=None, measure_interval=None, original_bill_amount=None, original_order_no=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, posttax_amount=None, pre_tax_payable_amount=None, preferential_bill_amount=None, pretax_amount=None, pretax_real_value=None, price=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, real_value=None, region=None, region_code=None, reservation_instance=None, resource_id=None, round_amount=None, saving_plan_deduction_discount_amount=None, saving_plan_deduction_discount_total_amount=None, saving_plan_deduction_sp_id=None, saving_plan_original_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, selling_mode=None, settle_payable_amount=None, settle_posttax_amount=None, settle_pre_tax_payable_amount=None, settle_pretax_amount=None, settle_pretax_real_value=None, settle_real_value=None, settle_tax=None, settlement_type=None, solution_zh=None, split_bill_detail_id=None, split_item_amount=None, split_item_id=None, split_item_name=None, split_item_ratio=None, subject_name=None, tag=None, tax=None, tax_rate=None, trade_time=None, unit=None, unpaid_amount=None, use_duration=None, use_duration_unit=None, zone=None, zone_code=None, _configuration=None): # noqa: E501
|
|
238
244
|
"""ListForListSplitBillDetailOutput - a model defined in Swagger""" # noqa: E501
|
|
239
245
|
if _configuration is None:
|
|
240
246
|
_configuration = Configuration()
|
|
@@ -249,6 +255,7 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
249
255
|
self._billing_mode = None
|
|
250
256
|
self._busi_period = None
|
|
251
257
|
self._business_mode = None
|
|
258
|
+
self._charge_item_code = None
|
|
252
259
|
self._config_name = None
|
|
253
260
|
self._configuration_code = None
|
|
254
261
|
self._cost_unit = None
|
|
@@ -270,6 +277,7 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
270
277
|
self._element_code = None
|
|
271
278
|
self._exchange_rate = None
|
|
272
279
|
self._expand_field = None
|
|
280
|
+
self._expense_date = None
|
|
273
281
|
self._expense_time = None
|
|
274
282
|
self._factor = None
|
|
275
283
|
self._factor_code = None
|
|
@@ -307,6 +315,7 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
307
315
|
self._resource_id = None
|
|
308
316
|
self._round_amount = None
|
|
309
317
|
self._saving_plan_deduction_discount_amount = None
|
|
318
|
+
self._saving_plan_deduction_discount_total_amount = None
|
|
310
319
|
self._saving_plan_deduction_sp_id = None
|
|
311
320
|
self._saving_plan_original_amount = None
|
|
312
321
|
self._seller_customer_name = None
|
|
@@ -358,6 +367,8 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
358
367
|
self.busi_period = busi_period
|
|
359
368
|
if business_mode is not None:
|
|
360
369
|
self.business_mode = business_mode
|
|
370
|
+
if charge_item_code is not None:
|
|
371
|
+
self.charge_item_code = charge_item_code
|
|
361
372
|
if config_name is not None:
|
|
362
373
|
self.config_name = config_name
|
|
363
374
|
if configuration_code is not None:
|
|
@@ -400,6 +411,8 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
400
411
|
self.exchange_rate = exchange_rate
|
|
401
412
|
if expand_field is not None:
|
|
402
413
|
self.expand_field = expand_field
|
|
414
|
+
if expense_date is not None:
|
|
415
|
+
self.expense_date = expense_date
|
|
403
416
|
if expense_time is not None:
|
|
404
417
|
self.expense_time = expense_time
|
|
405
418
|
if factor is not None:
|
|
@@ -474,6 +487,8 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
474
487
|
self.round_amount = round_amount
|
|
475
488
|
if saving_plan_deduction_discount_amount is not None:
|
|
476
489
|
self.saving_plan_deduction_discount_amount = saving_plan_deduction_discount_amount
|
|
490
|
+
if saving_plan_deduction_discount_total_amount is not None:
|
|
491
|
+
self.saving_plan_deduction_discount_total_amount = saving_plan_deduction_discount_total_amount
|
|
477
492
|
if saving_plan_deduction_sp_id is not None:
|
|
478
493
|
self.saving_plan_deduction_sp_id = saving_plan_deduction_sp_id
|
|
479
494
|
if saving_plan_original_amount is not None:
|
|
@@ -726,6 +741,27 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
726
741
|
|
|
727
742
|
self._business_mode = business_mode
|
|
728
743
|
|
|
744
|
+
@property
|
|
745
|
+
def charge_item_code(self):
|
|
746
|
+
"""Gets the charge_item_code of this ListForListSplitBillDetailOutput. # noqa: E501
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
:return: The charge_item_code of this ListForListSplitBillDetailOutput. # noqa: E501
|
|
750
|
+
:rtype: str
|
|
751
|
+
"""
|
|
752
|
+
return self._charge_item_code
|
|
753
|
+
|
|
754
|
+
@charge_item_code.setter
|
|
755
|
+
def charge_item_code(self, charge_item_code):
|
|
756
|
+
"""Sets the charge_item_code of this ListForListSplitBillDetailOutput.
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
:param charge_item_code: The charge_item_code of this ListForListSplitBillDetailOutput. # noqa: E501
|
|
760
|
+
:type: str
|
|
761
|
+
"""
|
|
762
|
+
|
|
763
|
+
self._charge_item_code = charge_item_code
|
|
764
|
+
|
|
729
765
|
@property
|
|
730
766
|
def config_name(self):
|
|
731
767
|
"""Gets the config_name of this ListForListSplitBillDetailOutput. # noqa: E501
|
|
@@ -1167,6 +1203,27 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
1167
1203
|
|
|
1168
1204
|
self._expand_field = expand_field
|
|
1169
1205
|
|
|
1206
|
+
@property
|
|
1207
|
+
def expense_date(self):
|
|
1208
|
+
"""Gets the expense_date of this ListForListSplitBillDetailOutput. # noqa: E501
|
|
1209
|
+
|
|
1210
|
+
|
|
1211
|
+
:return: The expense_date of this ListForListSplitBillDetailOutput. # noqa: E501
|
|
1212
|
+
:rtype: str
|
|
1213
|
+
"""
|
|
1214
|
+
return self._expense_date
|
|
1215
|
+
|
|
1216
|
+
@expense_date.setter
|
|
1217
|
+
def expense_date(self, expense_date):
|
|
1218
|
+
"""Sets the expense_date of this ListForListSplitBillDetailOutput.
|
|
1219
|
+
|
|
1220
|
+
|
|
1221
|
+
:param expense_date: The expense_date of this ListForListSplitBillDetailOutput. # noqa: E501
|
|
1222
|
+
:type: str
|
|
1223
|
+
"""
|
|
1224
|
+
|
|
1225
|
+
self._expense_date = expense_date
|
|
1226
|
+
|
|
1170
1227
|
@property
|
|
1171
1228
|
def expense_time(self):
|
|
1172
1229
|
"""Gets the expense_time of this ListForListSplitBillDetailOutput. # noqa: E501
|
|
@@ -1944,6 +2001,27 @@ class ListForListSplitBillDetailOutput(object):
|
|
|
1944
2001
|
|
|
1945
2002
|
self._saving_plan_deduction_discount_amount = saving_plan_deduction_discount_amount
|
|
1946
2003
|
|
|
2004
|
+
@property
|
|
2005
|
+
def saving_plan_deduction_discount_total_amount(self):
|
|
2006
|
+
"""Gets the saving_plan_deduction_discount_total_amount of this ListForListSplitBillDetailOutput. # noqa: E501
|
|
2007
|
+
|
|
2008
|
+
|
|
2009
|
+
:return: The saving_plan_deduction_discount_total_amount of this ListForListSplitBillDetailOutput. # noqa: E501
|
|
2010
|
+
:rtype: str
|
|
2011
|
+
"""
|
|
2012
|
+
return self._saving_plan_deduction_discount_total_amount
|
|
2013
|
+
|
|
2014
|
+
@saving_plan_deduction_discount_total_amount.setter
|
|
2015
|
+
def saving_plan_deduction_discount_total_amount(self, saving_plan_deduction_discount_total_amount):
|
|
2016
|
+
"""Sets the saving_plan_deduction_discount_total_amount of this ListForListSplitBillDetailOutput.
|
|
2017
|
+
|
|
2018
|
+
|
|
2019
|
+
:param saving_plan_deduction_discount_total_amount: The saving_plan_deduction_discount_total_amount of this ListForListSplitBillDetailOutput. # noqa: E501
|
|
2020
|
+
:type: str
|
|
2021
|
+
"""
|
|
2022
|
+
|
|
2023
|
+
self._saving_plan_deduction_discount_total_amount = saving_plan_deduction_discount_total_amount
|
|
2024
|
+
|
|
1947
2025
|
@property
|
|
1948
2026
|
def saving_plan_deduction_sp_id(self):
|
|
1949
2027
|
"""Gets the saving_plan_deduction_sp_id of this ListForListSplitBillDetailOutput. # noqa: E501
|
byteplussdkcore/api_client.py
CHANGED
|
@@ -68,7 +68,7 @@ class ApiClient(object):
|
|
|
68
68
|
self.default_headers[header_name] = header_value
|
|
69
69
|
self.cookie = cookie
|
|
70
70
|
# Set default User-Agent.
|
|
71
|
-
self.user_agent = 'byteplus-python-sdk-v2/3.0.
|
|
71
|
+
self.user_agent = 'byteplus-python-sdk-v2/3.0.47'
|
|
72
72
|
self.client_side_validation = configuration.client_side_validation
|
|
73
73
|
|
|
74
74
|
self.interceptor_chain = InterceptorChain()
|
byteplussdkcore/configuration.py
CHANGED
|
@@ -287,7 +287,7 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
|
|
|
287
287
|
"OS: {env}\n" \
|
|
288
288
|
"Python Version: {pyversion}\n" \
|
|
289
289
|
"Version of the API: 0.1.0\n" \
|
|
290
|
-
"SDK Package Version: 3.0.
|
|
290
|
+
"SDK Package Version: 3.0.47".\
|
|
291
291
|
format(env=sys.platform, pyversion=sys.version)
|
|
292
292
|
|
|
293
293
|
@property
|
|
@@ -135,6 +135,13 @@ default_endpoint = {
|
|
|
135
135
|
region_endpoint_map={},
|
|
136
136
|
fallback_endpoint=fallback_endpoint,
|
|
137
137
|
),
|
|
138
|
+
'cpaas': ServiceEndpointInfo(
|
|
139
|
+
service='cpaas',
|
|
140
|
+
is_global=True,
|
|
141
|
+
global_endpoint='',
|
|
142
|
+
region_endpoint_map={},
|
|
143
|
+
fallback_endpoint=fallback_endpoint,
|
|
144
|
+
),
|
|
138
145
|
'vepfs': ServiceEndpointInfo(
|
|
139
146
|
service='vepfs',
|
|
140
147
|
is_global=False,
|
|
@@ -76,7 +76,7 @@ def build_auth_token(api_client, db_user, instance_id, expires=None):
|
|
|
76
76
|
|
|
77
77
|
# Step 2: Save resolved host to X-Host query param, then clear host so it won't be signed
|
|
78
78
|
resolved_host = context.request.host
|
|
79
|
-
context.request.query_params['X-
|
|
79
|
+
context.request.query_params['X-HOST'] = '{scheme}://{host}'.format(
|
|
80
80
|
scheme=context.request.scheme, host=resolved_host)
|
|
81
81
|
context.request.host = None
|
|
82
82
|
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
cpaas
|
|
7
|
+
|
|
8
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
9
|
+
|
|
10
|
+
OpenAPI spec version: common-version
|
|
11
|
+
|
|
12
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from __future__ import absolute_import
|
|
17
|
+
|
|
18
|
+
# import apis into sdk package
|
|
19
|
+
from byteplussdkcpaas.api.cpaas_api import CPAASApi
|
|
20
|
+
|
|
21
|
+
# import models into sdk package
|
|
22
|
+
from byteplussdkcpaas.models.action_for_create_template_v2_input import ActionForCreateTemplateV2Input
|
|
23
|
+
from byteplussdkcpaas.models.action_for_get_template_v2_output import ActionForGetTemplateV2Output
|
|
24
|
+
from byteplussdkcpaas.models.create_template_v2_request import CreateTemplateV2Request
|
|
25
|
+
from byteplussdkcpaas.models.create_template_v2_response import CreateTemplateV2Response
|
|
26
|
+
from byteplussdkcpaas.models.data_for_create_template_v2_output import DataForCreateTemplateV2Output
|
|
27
|
+
from byteplussdkcpaas.models.data_for_get_template_v2_output import DataForGetTemplateV2Output
|
|
28
|
+
from byteplussdkcpaas.models.data_for_list_template_v2_output import DataForListTemplateV2Output
|
|
29
|
+
from byteplussdkcpaas.models.data_for_send_batch_message_output import DataForSendBatchMessageOutput
|
|
30
|
+
from byteplussdkcpaas.models.data_for_send_message_output import DataForSendMessageOutput
|
|
31
|
+
from byteplussdkcpaas.models.element_style_for_create_template_v2_input import ElementStyleForCreateTemplateV2Input
|
|
32
|
+
from byteplussdkcpaas.models.element_style_for_get_template_v2_output import ElementStyleForGetTemplateV2Output
|
|
33
|
+
from byteplussdkcpaas.models.extend_attrs_for_create_template_v2_input import ExtendAttrsForCreateTemplateV2Input
|
|
34
|
+
from byteplussdkcpaas.models.extend_attrs_for_get_template_v2_output import ExtendAttrsForGetTemplateV2Output
|
|
35
|
+
from byteplussdkcpaas.models.get_template_v2_request import GetTemplateV2Request
|
|
36
|
+
from byteplussdkcpaas.models.get_template_v2_response import GetTemplateV2Response
|
|
37
|
+
from byteplussdkcpaas.models.list_template_v2_request import ListTemplateV2Request
|
|
38
|
+
from byteplussdkcpaas.models.list_template_v2_response import ListTemplateV2Response
|
|
39
|
+
from byteplussdkcpaas.models.page_dto_list_for_create_template_v2_input import PageDTOListForCreateTemplateV2Input
|
|
40
|
+
from byteplussdkcpaas.models.page_dto_list_for_get_template_v2_output import PageDTOListForGetTemplateV2Output
|
|
41
|
+
from byteplussdkcpaas.models.page_element_dto_list_for_create_template_v2_input import PageElementDTOListForCreateTemplateV2Input
|
|
42
|
+
from byteplussdkcpaas.models.page_element_dto_list_for_get_template_v2_output import PageElementDTOListForGetTemplateV2Output
|
|
43
|
+
from byteplussdkcpaas.models.page_link_list_for_create_template_v2_input import PageLinkListForCreateTemplateV2Input
|
|
44
|
+
from byteplussdkcpaas.models.page_link_list_for_get_template_v2_output import PageLinkListForGetTemplateV2Output
|
|
45
|
+
from byteplussdkcpaas.models.priority_for_send_batch_message_input import PriorityForSendBatchMessageInput
|
|
46
|
+
from byteplussdkcpaas.models.priority_for_send_message_input import PriorityForSendMessageInput
|
|
47
|
+
from byteplussdkcpaas.models.receiver_for_send_batch_message_input import ReceiverForSendBatchMessageInput
|
|
48
|
+
from byteplussdkcpaas.models.send_batch_message_request import SendBatchMessageRequest
|
|
49
|
+
from byteplussdkcpaas.models.send_batch_message_response import SendBatchMessageResponse
|
|
50
|
+
from byteplussdkcpaas.models.send_message_request import SendMessageRequest
|
|
51
|
+
from byteplussdkcpaas.models.send_message_response import SendMessageResponse
|
|
52
|
+
from byteplussdkcpaas.models.template_list_for_create_template_v2_input import TemplateListForCreateTemplateV2Input
|
|
53
|
+
from byteplussdkcpaas.models.template_list_for_get_template_v2_output import TemplateListForGetTemplateV2Output
|
|
54
|
+
from byteplussdkcpaas.models.template_status_for_list_template_v2_output import TemplateStatusForListTemplateV2Output
|
|
55
|
+
from byteplussdkcpaas.models.variables_dto_list_for_create_template_v2_input import VariablesDTOListForCreateTemplateV2Input
|
|
56
|
+
from byteplussdkcpaas.models.variables_dto_list_for_get_template_v2_output import VariablesDTOListForGetTemplateV2Output
|