@@ -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
0 commit comments