Skip to content

Commit e304eef

Browse files
committed
update
2 parents c6c94fc + 7b181dc commit e304eef

7 files changed

+163
-7
lines changed

meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"lasted": "1.0.73",
3-
"meta_commit": "b2e931be2ad8b3ae7068476bb2216305c1d9d5b5"
3+
"meta_commit": "8ff49b704a7c10574720fbd5b8e4724682a152b6"
44
}

volcenginesdkbilling/models/list_for_list_amortized_cost_bill_daily_output.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ class ListForListAmortizedCostBillDailyOutput(object):
8888
'product': 'str',
8989
'product_zh': 'str',
9090
'project': 'str',
91+
'project_display_name': 'str',
9192
'region': 'str',
9293
'region_code': 'str',
9394
'round_amount': 'str',
@@ -159,6 +160,7 @@ class ListForListAmortizedCostBillDailyOutput(object):
159160
'product': 'Product',
160161
'product_zh': 'ProductZh',
161162
'project': 'Project',
163+
'project_display_name': 'ProjectDisplayName',
162164
'region': 'Region',
163165
'region_code': 'RegionCode',
164166
'round_amount': 'RoundAmount',
@@ -174,7 +176,7 @@ class ListForListAmortizedCostBillDailyOutput(object):
174176
'zone_code': 'ZoneCode'
175177
}
176178

177-
def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_time=None, amortized_month=None, amortized_type=None, bill_category=None, bill_id=None, bill_period=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, config_name=None, configuration_code=None, count=None, coupon_amount=None, currency=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_preferential_bill_amount=None, daily_amortized_round_amount=None, discount_bill_amount=None, element=None, element_code=None, expand_field=None, expense_time=None, factor=None, factor_code=None, instance_name=None, instance_no=None, now_amortized_coupon_amount=None, now_amortized_discount_bill_amount=None, now_amortized_original_bill_amount=None, now_amortized_paid_amount=None, now_amortized_payable_amount=None, now_amortized_preferential_bill_amount=None, now_amortized_round_amount=None, original_bill_amount=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, preferential_bill_amount=None, price=None, price_unit=None, product=None, product_zh=None, project=None, region=None, region_code=None, round_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, subject_name=None, tag=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, zone_code=None, _configuration=None): # noqa: E501
179+
def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_time=None, amortized_month=None, amortized_type=None, bill_category=None, bill_id=None, bill_period=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, config_name=None, configuration_code=None, count=None, coupon_amount=None, currency=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_preferential_bill_amount=None, daily_amortized_round_amount=None, discount_bill_amount=None, element=None, element_code=None, expand_field=None, expense_time=None, factor=None, factor_code=None, instance_name=None, instance_no=None, now_amortized_coupon_amount=None, now_amortized_discount_bill_amount=None, now_amortized_original_bill_amount=None, now_amortized_paid_amount=None, now_amortized_payable_amount=None, now_amortized_preferential_bill_amount=None, now_amortized_round_amount=None, original_bill_amount=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, preferential_bill_amount=None, price=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, region=None, region_code=None, round_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, subject_name=None, tag=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, zone_code=None, _configuration=None): # noqa: E501
178180
"""ListForListAmortizedCostBillDailyOutput - a model defined in Swagger""" # noqa: E501
179181
if _configuration is None:
180182
_configuration = Configuration()
@@ -235,6 +237,7 @@ def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_
235237
self._product = None
236238
self._product_zh = None
237239
self._project = None
240+
self._project_display_name = None
238241
self._region = None
239242
self._region_code = None
240243
self._round_amount = None
@@ -360,6 +363,8 @@ def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_
360363
self.product_zh = product_zh
361364
if project is not None:
362365
self.project = project
366+
if project_display_name is not None:
367+
self.project_display_name = project_display_name
363368
if region is not None:
364369
self.region = region
365370
if region_code is not None:
@@ -1542,6 +1547,27 @@ def project(self, project):
15421547

15431548
self._project = project
15441549

1550+
@property
1551+
def project_display_name(self):
1552+
"""Gets the project_display_name of this ListForListAmortizedCostBillDailyOutput. # noqa: E501
1553+
1554+
1555+
:return: The project_display_name of this ListForListAmortizedCostBillDailyOutput. # noqa: E501
1556+
:rtype: str
1557+
"""
1558+
return self._project_display_name
1559+
1560+
@project_display_name.setter
1561+
def project_display_name(self, project_display_name):
1562+
"""Sets the project_display_name of this ListForListAmortizedCostBillDailyOutput.
1563+
1564+
1565+
:param project_display_name: The project_display_name of this ListForListAmortizedCostBillDailyOutput. # noqa: E501
1566+
:type: str
1567+
"""
1568+
1569+
self._project_display_name = project_display_name
1570+
15451571
@property
15461572
def region(self):
15471573
"""Gets the region of this ListForListAmortizedCostBillDailyOutput. # noqa: E501

volcenginesdkbilling/models/list_for_list_amortized_cost_bill_detail_output.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ class ListForListAmortizedCostBillDetailOutput(object):
8989
'product': 'str',
9090
'product_zh': 'str',
9191
'project': 'str',
92+
'project_display_name': 'str',
9293
'region': 'str',
9394
'round_amount': 'str',
9495
'seller_customer_name': 'str',
@@ -160,6 +161,7 @@ class ListForListAmortizedCostBillDetailOutput(object):
160161
'product': 'Product',
161162
'product_zh': 'ProductZh',
162163
'project': 'Project',
164+
'project_display_name': 'ProjectDisplayName',
163165
'region': 'Region',
164166
'round_amount': 'RoundAmount',
165167
'seller_customer_name': 'SellerCustomerName',
@@ -174,7 +176,7 @@ class ListForListAmortizedCostBillDetailOutput(object):
174176
'zone': 'Zone'
175177
}
176178

177-
def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_time=None, amortized_month=None, amortized_type=None, bill_category=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, cost_id=None, count=None, coupon_amount=None, currency=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_preferential_bill_amount=None, daily_amortized_round_amount=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, effective_factor=None, element=None, expand_field=None, expense_begin_time=None, expense_end_time=None, factor=None, instance_name=None, instance_no=None, market_price=None, measure_interval=None, original_bill_amount=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, preferential_bill_amount=None, price=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, region=None, round_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, subject_name=None, tag=None, trade_time=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, _configuration=None): # noqa: E501
179+
def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_time=None, amortized_month=None, amortized_type=None, bill_category=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, cost_id=None, count=None, coupon_amount=None, currency=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_preferential_bill_amount=None, daily_amortized_round_amount=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, effective_factor=None, element=None, expand_field=None, expense_begin_time=None, expense_end_time=None, factor=None, instance_name=None, instance_no=None, market_price=None, measure_interval=None, original_bill_amount=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, preferential_bill_amount=None, price=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, region=None, round_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, subject_name=None, tag=None, trade_time=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, _configuration=None): # noqa: E501
178180
"""ListForListAmortizedCostBillDetailOutput - a model defined in Swagger""" # noqa: E501
179181
if _configuration is None:
180182
_configuration = Configuration()
@@ -236,6 +238,7 @@ def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_
236238
self._product = None
237239
self._product_zh = None
238240
self._project = None
241+
self._project_display_name = None
239242
self._region = None
240243
self._round_amount = None
241244
self._seller_customer_name = None
@@ -362,6 +365,8 @@ def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_
362365
self.product_zh = product_zh
363366
if project is not None:
364367
self.project = project
368+
if project_display_name is not None:
369+
self.project_display_name = project_display_name
365370
if region is not None:
366371
self.region = region
367372
if round_amount is not None:
@@ -1563,6 +1568,27 @@ def project(self, project):
15631568

15641569
self._project = project
15651570

1571+
@property
1572+
def project_display_name(self):
1573+
"""Gets the project_display_name of this ListForListAmortizedCostBillDetailOutput. # noqa: E501
1574+
1575+
1576+
:return: The project_display_name of this ListForListAmortizedCostBillDetailOutput. # noqa: E501
1577+
:rtype: str
1578+
"""
1579+
return self._project_display_name
1580+
1581+
@project_display_name.setter
1582+
def project_display_name(self, project_display_name):
1583+
"""Sets the project_display_name of this ListForListAmortizedCostBillDetailOutput.
1584+
1585+
1586+
:param project_display_name: The project_display_name of this ListForListAmortizedCostBillDetailOutput. # noqa: E501
1587+
:type: str
1588+
"""
1589+
1590+
self._project_display_name = project_display_name
1591+
15661592
@property
15671593
def region(self):
15681594
"""Gets the region of this ListForListAmortizedCostBillDetailOutput. # noqa: E501

volcenginesdkbilling/models/list_for_list_amortized_cost_bill_monthly_output.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ class ListForListAmortizedCostBillMonthlyOutput(object):
101101
'product': 'str',
102102
'product_zh': 'str',
103103
'project': 'str',
104+
'project_display_name': 'str',
104105
'region': 'str',
105106
'round_amount': 'str',
106107
'seller_customer_name': 'str',
@@ -190,6 +191,7 @@ class ListForListAmortizedCostBillMonthlyOutput(object):
190191
'product': 'Product',
191192
'product_zh': 'ProductZh',
192193
'project': 'Project',
194+
'project_display_name': 'ProjectDisplayName',
193195
'region': 'Region',
194196
'round_amount': 'RoundAmount',
195197
'seller_customer_name': 'SellerCustomerName',
@@ -210,7 +212,7 @@ class ListForListAmortizedCostBillMonthlyOutput(object):
210212
'zone': 'Zone'
211213
}
212214

213-
def __init__(self, amortized_begin_time=None, amortized_day_num=None, amortized_end_time=None, amortized_month=None, amortized_type=None, before_amortized_coupon_amount=None, before_amortized_discount_bill_amount=None, before_amortized_original_bill_amount=None, before_amortized_paid_amount=None, before_amortized_payable_amount=None, before_amortized_preferential_bill_amount=None, before_amortized_round_amount=None, bill_category=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, count=None, coupon_amount=None, currency=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_preferential_bill_amount=None, daily_amortized_round_amount=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, effective_factor=None, element=None, expand_field=None, expense_time=None, factor=None, instance_name=None, instance_no=None, market_price=None, measure_interval=None, now_amortized_coupon_amount=None, now_amortized_discount_bill_amount=None, now_amortized_original_bill_amount=None, now_amortized_paid_amount=None, now_amortized_payable_amount=None, now_amortized_preferential_bill_amount=None, now_amortized_round_amount=None, original_bill_amount=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, preferential_bill_amount=None, price=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, region=None, round_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, subject_name=None, tag=None, unamortized_coupon_amount=None, unamortized_discount_bill_amount=None, unamortized_original_bill_amount=None, unamortized_paid_amount=None, unamortized_payable_amount=None, unamortized_preferential_bill_amount=None, unamortized_round_amount=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, _configuration=None): # noqa: E501
215+
def __init__(self, amortized_begin_time=None, amortized_day_num=None, amortized_end_time=None, amortized_month=None, amortized_type=None, before_amortized_coupon_amount=None, before_amortized_discount_bill_amount=None, before_amortized_original_bill_amount=None, before_amortized_paid_amount=None, before_amortized_payable_amount=None, before_amortized_preferential_bill_amount=None, before_amortized_round_amount=None, bill_category=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, count=None, coupon_amount=None, currency=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_preferential_bill_amount=None, daily_amortized_round_amount=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, effective_factor=None, element=None, expand_field=None, expense_time=None, factor=None, instance_name=None, instance_no=None, market_price=None, measure_interval=None, now_amortized_coupon_amount=None, now_amortized_discount_bill_amount=None, now_amortized_original_bill_amount=None, now_amortized_paid_amount=None, now_amortized_payable_amount=None, now_amortized_preferential_bill_amount=None, now_amortized_round_amount=None, original_bill_amount=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, preferential_bill_amount=None, price=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, region=None, round_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, subject_name=None, tag=None, unamortized_coupon_amount=None, unamortized_discount_bill_amount=None, unamortized_original_bill_amount=None, unamortized_paid_amount=None, unamortized_payable_amount=None, unamortized_preferential_bill_amount=None, unamortized_round_amount=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, _configuration=None): # noqa: E501
214216
"""ListForListAmortizedCostBillMonthlyOutput - a model defined in Swagger""" # noqa: E501
215217
if _configuration is None:
216218
_configuration = Configuration()
@@ -284,6 +286,7 @@ def __init__(self, amortized_begin_time=None, amortized_day_num=None, amortized_
284286
self._product = None
285287
self._product_zh = None
286288
self._project = None
289+
self._project_display_name = None
287290
self._region = None
288291
self._round_amount = None
289292
self._seller_customer_name = None
@@ -440,6 +443,8 @@ def __init__(self, amortized_begin_time=None, amortized_day_num=None, amortized_
440443
self.product_zh = product_zh
441444
if project is not None:
442445
self.project = project
446+
if project_display_name is not None:
447+
self.project_display_name = project_display_name
443448
if region is not None:
444449
self.region = region
445450
if round_amount is not None:
@@ -1905,6 +1910,27 @@ def project(self, project):
19051910

19061911
self._project = project
19071912

1913+
@property
1914+
def project_display_name(self):
1915+
"""Gets the project_display_name of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501
1916+
1917+
1918+
:return: The project_display_name of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501
1919+
:rtype: str
1920+
"""
1921+
return self._project_display_name
1922+
1923+
@project_display_name.setter
1924+
def project_display_name(self, project_display_name):
1925+
"""Sets the project_display_name of this ListForListAmortizedCostBillMonthlyOutput.
1926+
1927+
1928+
:param project_display_name: The project_display_name of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501
1929+
:type: str
1930+
"""
1931+
1932+
self._project_display_name = project_display_name
1933+
19081934
@property
19091935
def region(self):
19101936
"""Gets the region of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501

0 commit comments

Comments
 (0)