Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.12 KB

File metadata and controls

29 lines (21 loc) · 1.12 KB

PlayerSeasonOverviewCategory

Properties

Name Type Description Notes
name str
stats List[PlayerSeasonOverviewStat]

Example

from cfbd.models.player_season_overview_category import PlayerSeasonOverviewCategory

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

# convert the object into a dict
player_season_overview_category_dict = player_season_overview_category_instance.to_dict()
# create an instance of PlayerSeasonOverviewCategory from a dict
player_season_overview_category_from_dict = PlayerSeasonOverviewCategory.from_dict(player_season_overview_category_dict)

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