| Name | Type | Description | Notes |
|---|---|---|---|
| season | int | ||
| id | str | ||
| name | str | ||
| position | str | ||
| team | str | ||
| conference | str | ||
| games | int | ||
| box_score_stats | PlayerSeasonOverviewBoxScoreStats | ||
| usage | PlayerUsageUsage | [optional] | |
| ppa | PlayerSeasonOverviewPPA | [optional] |
from cfbd.models.player_season_overview import PlayerSeasonOverview
# TODO update the JSON string below
json = "{}"
# create an instance of PlayerSeasonOverview from a JSON string
player_season_overview_instance = PlayerSeasonOverview.from_json(json)
# print the JSON string representation of the object
print PlayerSeasonOverview.to_json()
# convert the object into a dict
player_season_overview_dict = player_season_overview_instance.to_dict()
# create an instance of PlayerSeasonOverview from a dict
player_season_overview_from_dict = PlayerSeasonOverview.from_dict(player_season_overview_dict)