Name | Type | Description | Notes |
---|---|---|---|
season | int | ||
player_id | str | ||
player | str | ||
team | str | ||
conference | str | ||
category | str | ||
stat_type | str | ||
stat | str |
from cfbd.models.player_stat import PlayerStat
# TODO update the JSON string below
json = "{}"
# create an instance of PlayerStat from a JSON string
player_stat_instance = PlayerStat.from_json(json)
# print the JSON string representation of the object
print PlayerStat.to_json()
# convert the object into a dict
player_stat_dict = player_stat_instance.to_dict()
# create an instance of PlayerStat from a dict
player_stat_from_dict = PlayerStat.from_dict(player_stat_dict)