@@ -36,6 +36,7 @@ class ListBillDetailRequest(object):
3636 'bill_category' : 'list[str]' ,
3737 'bill_period' : 'str' ,
3838 'billing_mode' : 'list[str]' ,
39+ 'expense_date' : 'str' ,
3940 'group_period' : 'int' ,
4041 'group_term' : 'int' ,
4142 'ignore_zero' : 'int' ,
@@ -50,6 +51,7 @@ class ListBillDetailRequest(object):
5051 'bill_category' : 'BillCategory' ,
5152 'bill_period' : 'BillPeriod' ,
5253 'billing_mode' : 'BillingMode' ,
54+ 'expense_date' : 'ExpenseDate' ,
5355 'group_period' : 'GroupPeriod' ,
5456 'group_term' : 'GroupTerm' ,
5557 'ignore_zero' : 'IgnoreZero' ,
@@ -60,7 +62,7 @@ class ListBillDetailRequest(object):
6062 'product' : 'Product'
6163 }
6264
63- def __init__ (self , bill_category = None , bill_period = None , billing_mode = None , group_period = None , group_term = None , ignore_zero = None , instance_no = None , limit = None , need_record_num = None , offset = None , product = None , _configuration = None ): # noqa: E501
65+ def __init__ (self , bill_category = None , bill_period = None , billing_mode = None , expense_date = None , group_period = None , group_term = None , ignore_zero = None , instance_no = None , limit = None , need_record_num = None , offset = None , product = None , _configuration = None ): # noqa: E501
6466 """ListBillDetailRequest - a model defined in Swagger""" # noqa: E501
6567 if _configuration is None :
6668 _configuration = Configuration ()
@@ -69,6 +71,7 @@ def __init__(self, bill_category=None, bill_period=None, billing_mode=None, grou
6971 self ._bill_category = None
7072 self ._bill_period = None
7173 self ._billing_mode = None
74+ self ._expense_date = None
7275 self ._group_period = None
7376 self ._group_term = None
7477 self ._ignore_zero = None
@@ -84,6 +87,8 @@ def __init__(self, bill_category=None, bill_period=None, billing_mode=None, grou
8487 self .bill_period = bill_period
8588 if billing_mode is not None :
8689 self .billing_mode = billing_mode
90+ if expense_date is not None :
91+ self .expense_date = expense_date
8792 if group_period is not None :
8893 self .group_period = group_period
8994 if group_term is not None :
@@ -165,6 +170,27 @@ def billing_mode(self, billing_mode):
165170
166171 self ._billing_mode = billing_mode
167172
173+ @property
174+ def expense_date (self ):
175+ """Gets the expense_date of this ListBillDetailRequest. # noqa: E501
176+
177+
178+ :return: The expense_date of this ListBillDetailRequest. # noqa: E501
179+ :rtype: str
180+ """
181+ return self ._expense_date
182+
183+ @expense_date .setter
184+ def expense_date (self , expense_date ):
185+ """Sets the expense_date of this ListBillDetailRequest.
186+
187+
188+ :param expense_date: The expense_date of this ListBillDetailRequest. # noqa: E501
189+ :type: str
190+ """
191+
192+ self ._expense_date = expense_date
193+
168194 @property
169195 def group_period (self ):
170196 """Gets the group_period of this ListBillDetailRequest. # noqa: E501
0 commit comments