Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.09 KB

GamePlayerStatsTeam.md

File metadata and controls

32 lines (24 loc) · 1.09 KB

GamePlayerStatsTeam

Properties

Name Type Description Notes
team str
conference str
home_away str
points int
categories List[GamePlayerStatCategories]

Example

from cfbd.models.game_player_stats_team import GamePlayerStatsTeam

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

# convert the object into a dict
game_player_stats_team_dict = game_player_stats_team_instance.to_dict()
# create an instance of GamePlayerStatsTeam from a dict
game_player_stats_team_from_dict = GamePlayerStatsTeam.from_dict(game_player_stats_team_dict)

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