@@ -34,6 +34,7 @@ class ListForListCouponUsageRecordsOutput(object):
3434 """
3535 swagger_types = {
3636 'account_id' : 'int' ,
37+ 'billing_cycle' : 'str' ,
3738 'change_amount' : 'float' ,
3839 'change_type' : 'int' ,
3940 'coupon_id' : 'str' ,
@@ -47,6 +48,7 @@ class ListForListCouponUsageRecordsOutput(object):
4748
4849 attribute_map = {
4950 'account_id' : 'AccountID' ,
51+ 'billing_cycle' : 'BillingCycle' ,
5052 'change_amount' : 'ChangeAmount' ,
5153 'change_type' : 'ChangeType' ,
5254 'coupon_id' : 'CouponID' ,
@@ -58,13 +60,14 @@ class ListForListCouponUsageRecordsOutput(object):
5860 'user_account_id' : 'UserAccountID'
5961 }
6062
61- def __init__ (self , account_id = None , change_amount = None , change_type = None , coupon_id = None , created_time = None , pay_type = None , product_code = None , product_name = None , sub_business_id = None , user_account_id = None , _configuration = None ): # noqa: E501
63+ def __init__ (self , account_id = None , billing_cycle = None , change_amount = None , change_type = None , coupon_id = None , created_time = None , pay_type = None , product_code = None , product_name = None , sub_business_id = None , user_account_id = None , _configuration = None ): # noqa: E501
6264 """ListForListCouponUsageRecordsOutput - a model defined in Swagger""" # noqa: E501
6365 if _configuration is None :
6466 _configuration = Configuration ()
6567 self ._configuration = _configuration
6668
6769 self ._account_id = None
70+ self ._billing_cycle = None
6871 self ._change_amount = None
6972 self ._change_type = None
7073 self ._coupon_id = None
@@ -78,6 +81,8 @@ def __init__(self, account_id=None, change_amount=None, change_type=None, coupon
7881
7982 if account_id is not None :
8083 self .account_id = account_id
84+ if billing_cycle is not None :
85+ self .billing_cycle = billing_cycle
8186 if change_amount is not None :
8287 self .change_amount = change_amount
8388 if change_type is not None :
@@ -118,6 +123,27 @@ def account_id(self, account_id):
118123
119124 self ._account_id = account_id
120125
126+ @property
127+ def billing_cycle (self ):
128+ """Gets the billing_cycle of this ListForListCouponUsageRecordsOutput. # noqa: E501
129+
130+
131+ :return: The billing_cycle of this ListForListCouponUsageRecordsOutput. # noqa: E501
132+ :rtype: str
133+ """
134+ return self ._billing_cycle
135+
136+ @billing_cycle .setter
137+ def billing_cycle (self , billing_cycle ):
138+ """Sets the billing_cycle of this ListForListCouponUsageRecordsOutput.
139+
140+
141+ :param billing_cycle: The billing_cycle of this ListForListCouponUsageRecordsOutput. # noqa: E501
142+ :type: str
143+ """
144+
145+ self ._billing_cycle = billing_cycle
146+
121147 @property
122148 def change_amount (self ):
123149 """Gets the change_amount of this ListForListCouponUsageRecordsOutput. # noqa: E501
0 commit comments