Skip to content

Commit d606cf7

Browse files
author
BitsAdmin
committed
Merge branch 'livesaas-Python-2023-08-01-online-1561-2025_09_11_14_54_38' into 'integration_2025-09-11_1051102926850'
feat: [development task] livesaas-1561-Python (1649659) See merge request iaasng/volcengine-python-sdk!810
2 parents 4824bde + d1c9a6c commit d606cf7

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

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)