@@ -47,6 +47,7 @@ class ListForListCouponsOutput(object):
4747 'remaining_amount' : 'float' ,
4848 'remark' : 'str' ,
4949 'status' : 'int' ,
50+ 'total_amount' : 'float' ,
5051 'usage_limit' : 'int'
5152 }
5253
@@ -65,10 +66,11 @@ class ListForListCouponsOutput(object):
6566 'remaining_amount' : 'RemainingAmount' ,
6667 'remark' : 'Remark' ,
6768 'status' : 'Status' ,
69+ 'total_amount' : 'TotalAmount' ,
6870 'usage_limit' : 'UsageLimit'
6971 }
7072
71- def __init__ (self , account_id = None , acquire_time = None , amount_limit = None , assigned_owner_id_list = None , begin_time = None , coupon_id = None , coupon_name = None , expired_time = None , order_type_limit = None , pay_type_limit = None , product_limit_list = None , remaining_amount = None , remark = None , status = None , usage_limit = None , _configuration = None ): # noqa: E501
73+ def __init__ (self , account_id = None , acquire_time = None , amount_limit = None , assigned_owner_id_list = None , begin_time = None , coupon_id = None , coupon_name = None , expired_time = None , order_type_limit = None , pay_type_limit = None , product_limit_list = None , remaining_amount = None , remark = None , status = None , total_amount = None , usage_limit = None , _configuration = None ): # noqa: E501
7274 """ListForListCouponsOutput - a model defined in Swagger""" # noqa: E501
7375 if _configuration is None :
7476 _configuration = Configuration ()
@@ -88,6 +90,7 @@ def __init__(self, account_id=None, acquire_time=None, amount_limit=None, assign
8890 self ._remaining_amount = None
8991 self ._remark = None
9092 self ._status = None
93+ self ._total_amount = None
9194 self ._usage_limit = None
9295 self .discriminator = None
9396
@@ -119,6 +122,8 @@ def __init__(self, account_id=None, acquire_time=None, amount_limit=None, assign
119122 self .remark = remark
120123 if status is not None :
121124 self .status = status
125+ if total_amount is not None :
126+ self .total_amount = total_amount
122127 if usage_limit is not None :
123128 self .usage_limit = usage_limit
124129
@@ -416,6 +421,27 @@ def status(self, status):
416421
417422 self ._status = status
418423
424+ @property
425+ def total_amount (self ):
426+ """Gets the total_amount of this ListForListCouponsOutput. # noqa: E501
427+
428+
429+ :return: The total_amount of this ListForListCouponsOutput. # noqa: E501
430+ :rtype: float
431+ """
432+ return self ._total_amount
433+
434+ @total_amount .setter
435+ def total_amount (self , total_amount ):
436+ """Sets the total_amount of this ListForListCouponsOutput.
437+
438+
439+ :param total_amount: The total_amount of this ListForListCouponsOutput. # noqa: E501
440+ :type: float
441+ """
442+
443+ self ._total_amount = total_amount
444+
419445 @property
420446 def usage_limit (self ):
421447 """Gets the usage_limit of this ListForListCouponsOutput. # noqa: E501
0 commit comments