Skip to content

Commit 4e04d3c

Browse files
author
ci_volc_sdk_gen
committed
feat: auto generate for livesaas-Python-2023-08-01-online-1561-2025_09_11_14_54_38
1 parent 3edc944 commit 4e04d3c

File tree

6 files changed

+33
-7
lines changed

6 files changed

+33
-7
lines changed

meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"lasted": "4.0.17",
3-
"meta_commit": "5ea62ff7d371db1217e24981c449a52a381c1454"
2+
"lasted": "4.0.18",
3+
"meta_commit": "848167b5cd52f49bd6b7329e90eab1fea7277973"
44
}

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 = "4.0.17"
6+
VERSION = "4.0.18"
77
# To install the library, run the following
88
#
99
# python setup.py install

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/4.0.17'
70+
self.user_agent = 'volcstack-python-sdk/4.0.18'
7171
self.client_side_validation = configuration.client_side_validation
7272

7373
self.interceptor_chain = InterceptorChain()

volcenginesdkcore/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def to_debug_report(self):
267267
"OS: {env}\n" \
268268
"Python Version: {pyversion}\n" \
269269
"Version of the API: 0.1.0\n" \
270-
"SDK Package Version: 4.0.17".\
270+
"SDK Package Version: 4.0.18".\
271271
format(env=sys.platform, pyversion=sys.version)
272272

273273
@property

volcenginesdklivesaas20230801/models/award_record_for_list_award_record_statistics_output.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ class AwardRecordForListAwardRecordStatisticsOutput(object):
3535
swagger_types = {
3636
'activity_id': 'int',
3737
'award_address': 'str',
38+
'award_email': 'str',
3839
'award_id': 'int',
3940
'award_item_name': 'str',
4041
'award_name': 'str',
@@ -57,6 +58,7 @@ class AwardRecordForListAwardRecordStatisticsOutput(object):
5758
attribute_map = {
5859
'activity_id': 'ActivityId',
5960
'award_address': 'AwardAddress',
61+
'award_email': 'AwardEmail',
6062
'award_id': 'AwardId',
6163
'award_item_name': 'AwardItemName',
6264
'award_name': 'AwardName',
@@ -76,14 +78,15 @@ class AwardRecordForListAwardRecordStatisticsOutput(object):
7678
'user_name': 'UserName'
7779
}
7880

79-
def __init__(self, activity_id=None, award_address=None, award_id=None, award_item_name=None, award_name=None, award_result=None, email=None, external_id=None, extra=None, ip=None, is_priority_user=None, login_tel=None, notify_result=None, open_award_time=None, receiver_name=None, receiver_tel=None, user_agent=None, user_id=None, user_name=None, _configuration=None): # noqa: E501
81+
def __init__(self, activity_id=None, award_address=None, award_email=None, award_id=None, award_item_name=None, award_name=None, award_result=None, email=None, external_id=None, extra=None, ip=None, is_priority_user=None, login_tel=None, notify_result=None, open_award_time=None, receiver_name=None, receiver_tel=None, user_agent=None, user_id=None, user_name=None, _configuration=None): # noqa: E501
8082
"""AwardRecordForListAwardRecordStatisticsOutput - a model defined in Swagger""" # noqa: E501
8183
if _configuration is None:
8284
_configuration = Configuration()
8385
self._configuration = _configuration
8486

8587
self._activity_id = None
8688
self._award_address = None
89+
self._award_email = None
8790
self._award_id = None
8891
self._award_item_name = None
8992
self._award_name = None
@@ -107,6 +110,8 @@ def __init__(self, activity_id=None, award_address=None, award_id=None, award_it
107110
self.activity_id = activity_id
108111
if award_address is not None:
109112
self.award_address = award_address
113+
if award_email is not None:
114+
self.award_email = award_email
110115
if award_id is not None:
111116
self.award_id = award_id
112117
if award_item_name is not None:
@@ -184,6 +189,27 @@ def award_address(self, award_address):
184189

185190
self._award_address = award_address
186191

192+
@property
193+
def award_email(self):
194+
"""Gets the award_email of this AwardRecordForListAwardRecordStatisticsOutput. # noqa: E501
195+
196+
197+
:return: The award_email of this AwardRecordForListAwardRecordStatisticsOutput. # noqa: E501
198+
:rtype: str
199+
"""
200+
return self._award_email
201+
202+
@award_email.setter
203+
def award_email(self, award_email):
204+
"""Sets the award_email of this AwardRecordForListAwardRecordStatisticsOutput.
205+
206+
207+
:param award_email: The award_email of this AwardRecordForListAwardRecordStatisticsOutput. # noqa: E501
208+
:type: str
209+
"""
210+
211+
self._award_email = award_email
212+
187213
@property
188214
def award_id(self):
189215
"""Gets the award_id of this AwardRecordForListAwardRecordStatisticsOutput. # noqa: E501

volcenginesdklivesaas20230801/models/robot_comment_for_list_robot_comments_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class RobotCommentForListRobotCommentsOutput(object):
3939

4040
attribute_map = {
4141
'comment_content': 'CommentContent',
42-
'id': 'ID'
42+
'id': 'Id'
4343
}
4444

4545
def __init__(self, comment_content=None, id=None, _configuration=None): # noqa: E501

0 commit comments

Comments
 (0)