Skip to content

Commit 481d16f

Browse files
author
ci_volc_sdk_gen
committed
feat: auto generate for billing-Python-2022-01-01-online-321-2024_01_30_19_40_07
1 parent 404d751 commit 481d16f

File tree

5 files changed

+33
-7
lines changed

5 files changed

+33
-7
lines changed

meta.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"lasted": "1.0.63",
3-
"meta_commit": "01d95b7b2d76d4a6f810a9c2e45c6f05afa7aa84"
4-
}
2+
"lasted": "1.0.64",
3+
"meta_commit": "8182375a413b2d75454501800284ba27200b0f9d"
4+
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages # noqa: H301
44

55
NAME = "volcengine-python-sdk"
6-
VERSION = "1.0.63"
6+
VERSION = "1.0.64"
77
# To install the library, run the following
88
#
99
# python setup.py install

volcenginesdkbilling/models/list_for_list_bill_output.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class ListForListBillOutput(object):
3434
"""
3535
swagger_types = {
3636
'bill_category_parent': 'str',
37+
'bill_detail_num': 'str',
3738
'bill_id': 'str',
3839
'bill_period': 'str',
3940
'billing_mode': 'str',
@@ -70,6 +71,7 @@ class ListForListBillOutput(object):
7071

7172
attribute_map = {
7273
'bill_category_parent': 'BillCategoryParent',
74+
'bill_detail_num': 'BillDetailNum',
7375
'bill_id': 'BillID',
7476
'bill_period': 'BillPeriod',
7577
'billing_mode': 'BillingMode',
@@ -104,13 +106,14 @@ class ListForListBillOutput(object):
104106
'unpaid_amount': 'UnpaidAmount'
105107
}
106108

107-
def __init__(self, bill_category_parent=None, bill_id=None, bill_period=None, billing_mode=None, busi_period=None, business_mode=None, coupon_amount=None, credit_carried_amount=None, currency=None, discount_bill_amount=None, expense_begin_time=None, expense_end_time=None, original_bill_amount=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, pay_status=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, preferential_bill_amount=None, product=None, product_zh=None, round_bill_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, settlement_type=None, subject_name=None, trade_time=None, unpaid_amount=None, _configuration=None): # noqa: E501
109+
def __init__(self, bill_category_parent=None, bill_detail_num=None, bill_id=None, bill_period=None, billing_mode=None, busi_period=None, business_mode=None, coupon_amount=None, credit_carried_amount=None, currency=None, discount_bill_amount=None, expense_begin_time=None, expense_end_time=None, original_bill_amount=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, pay_status=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, preferential_bill_amount=None, product=None, product_zh=None, round_bill_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, settlement_type=None, subject_name=None, trade_time=None, unpaid_amount=None, _configuration=None): # noqa: E501
108110
"""ListForListBillOutput - a model defined in Swagger""" # noqa: E501
109111
if _configuration is None:
110112
_configuration = Configuration()
111113
self._configuration = _configuration
112114

113115
self._bill_category_parent = None
116+
self._bill_detail_num = None
114117
self._bill_id = None
115118
self._bill_period = None
116119
self._billing_mode = None
@@ -147,6 +150,8 @@ def __init__(self, bill_category_parent=None, bill_id=None, bill_period=None, bi
147150

148151
if bill_category_parent is not None:
149152
self.bill_category_parent = bill_category_parent
153+
if bill_detail_num is not None:
154+
self.bill_detail_num = bill_detail_num
150155
if bill_id is not None:
151156
self.bill_id = bill_id
152157
if bill_period is not None:
@@ -233,6 +238,27 @@ def bill_category_parent(self, bill_category_parent):
233238

234239
self._bill_category_parent = bill_category_parent
235240

241+
@property
242+
def bill_detail_num(self):
243+
"""Gets the bill_detail_num of this ListForListBillOutput. # noqa: E501
244+
245+
246+
:return: The bill_detail_num of this ListForListBillOutput. # noqa: E501
247+
:rtype: str
248+
"""
249+
return self._bill_detail_num
250+
251+
@bill_detail_num.setter
252+
def bill_detail_num(self, bill_detail_num):
253+
"""Sets the bill_detail_num of this ListForListBillOutput.
254+
255+
256+
:param bill_detail_num: The bill_detail_num of this ListForListBillOutput. # noqa: E501
257+
:type: str
258+
"""
259+
260+
self._bill_detail_num = bill_detail_num
261+
236262
@property
237263
def bill_id(self):
238264
"""Gets the bill_id of this ListForListBillOutput. # noqa: E501

volcenginesdkcore/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
6767
self.default_headers[header_name] = header_value
6868
self.cookie = cookie
6969
# Set default User-Agent.
70-
self.user_agent = 'volcstack-python-sdk/1.0.63'
70+
self.user_agent = 'volcstack-python-sdk/1.0.64'
7171
self.client_side_validation = configuration.client_side_validation
7272

7373
def __del__(self):

volcenginesdkcore/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,5 +221,5 @@ def to_debug_report(self):
221221
"OS: {env}\n"\
222222
"Python Version: {pyversion}\n"\
223223
"Version of the API: 0.1.0\n"\
224-
"SDK Package Version: 1.0.63".\
224+
"SDK Package Version: 1.0.64".\
225225
format(env=sys.platform, pyversion=sys.version)

0 commit comments

Comments
 (0)