Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

NetRevenueOverTime.md

File metadata and controls

30 lines (21 loc) · 1.02 KB

NetRevenueOverTime

Properties

Name Type Description Notes
data List[FloatOverTime] [optional]
total float Grand total of all data [optional]

Example

from iblai.models.net_revenue_over_time import NetRevenueOverTime

# TODO update the JSON string below
json = "{}"
# create an instance of NetRevenueOverTime from a JSON string
net_revenue_over_time_instance = NetRevenueOverTime.from_json(json)
# print the JSON string representation of the object
print(NetRevenueOverTime.to_json())

# convert the object into a dict
net_revenue_over_time_dict = net_revenue_over_time_instance.to_dict()
# create an instance of NetRevenueOverTime from a dict
net_revenue_over_time_from_dict = NetRevenueOverTime.from_dict(net_revenue_over_time_dict)

[Back to Model list] [Back to API list] [Back to README]