Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 999 Bytes

StatsByQuarter.md

File metadata and controls

32 lines (24 loc) · 999 Bytes

StatsByQuarter

Properties

Name Type Description Notes
total float
quarter1 float
quarter2 float
quarter3 float
quarter4 float

Example

from cfbd.models.stats_by_quarter import StatsByQuarter

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

# convert the object into a dict
stats_by_quarter_dict = stats_by_quarter_instance.to_dict()
# create an instance of StatsByQuarter from a dict
stats_by_quarter_from_dict = StatsByQuarter.from_dict(stats_by_quarter_dict)

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