Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1013 Bytes

PlayerStat.md

File metadata and controls

35 lines (27 loc) · 1013 Bytes

PlayerStat

Properties

Name Type Description Notes
season int
player_id str
player str
team str
conference str
category str
stat_type str
stat str

Example

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)

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