Name | Type | Description | Notes |
---|---|---|---|
data | List[FloatOverTime] | [optional] | |
total | float | Grand total of all data | [optional] |
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)