Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.18 KB

File metadata and controls

28 lines (20 loc) · 1.18 KB

PlayerSeasonOverviewBoxScoreStats

Properties

Name Type Description Notes
categories List[PlayerSeasonOverviewCategory]

Example

from cfbd.models.player_season_overview_box_score_stats import PlayerSeasonOverviewBoxScoreStats

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

# convert the object into a dict
player_season_overview_box_score_stats_dict = player_season_overview_box_score_stats_instance.to_dict()
# create an instance of PlayerSeasonOverviewBoxScoreStats from a dict
player_season_overview_box_score_stats_from_dict = PlayerSeasonOverviewBoxScoreStats.from_dict(player_season_overview_box_score_stats_dict)

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