@@ -44,24 +44,29 @@ class ConsumptionResult(object):
4444 """
4545 swagger_types = {
4646 'credit' : 'float' ,
47- 'quantity' : 'float'
47+ 'quantity' : 'float' ,
48+ 'billed_api_calls' : 'float'
4849 }
4950
5051 attribute_map = {
5152 'credit' : 'Credit' ,
52- 'quantity' : 'Quantity'
53+ 'quantity' : 'Quantity' ,
54+ 'billed_api_calls' : 'BilledApiCalls'
5355 }
5456
55- def __init__ (self , credit = None , quantity = None , ** kwargs ): # noqa: E501
57+ def __init__ (self , credit = None , quantity = None , billed_api_calls = None , ** kwargs ): # noqa: E501
5658 """Initializes new instance of ConsumptionResult""" # noqa: E501
5759
5860 self ._credit = None
5961 self ._quantity = None
62+ self ._billed_api_calls = None
6063
6164 if credit is not None :
6265 self .credit = credit
6366 if quantity is not None :
6467 self .quantity = quantity
68+ if billed_api_calls is not None :
69+ self .billed_api_calls = billed_api_calls
6570
6671 @property
6772 def credit (self ):
@@ -114,6 +119,32 @@ def quantity(self, quantity):
114119 if quantity is None :
115120 raise ValueError ("Invalid value for `quantity`, must not be `None`" ) # noqa: E501
116121 self ._quantity = quantity
122+
123+ @property
124+ def billed_api_calls (self ):
125+ """
126+ Gets the billed_api_calls. # noqa: E501
127+
128+ Billed API calls number # noqa: E501
129+
130+ :return: The billed_api_calls. # noqa: E501
131+ :rtype: float
132+ """
133+ return self ._billed_api_calls
134+
135+ @billed_api_calls .setter
136+ def billed_api_calls (self , billed_api_calls ):
137+ """
138+ Sets the billed_api_calls.
139+
140+ Billed API calls number # noqa: E501
141+
142+ :param billed_api_calls: The billed_api_calls. # noqa: E501
143+ :type: float
144+ """
145+ if billed_api_calls is None :
146+ raise ValueError ("Invalid value for `billed_api_calls`, must not be `None`" ) # noqa: E501
147+ self ._billed_api_calls = billed_api_calls
117148
118149 def to_dict (self ):
119150 """Returns the model properties as a dict"""
0 commit comments