Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.25 KB

File metadata and controls

35 lines (27 loc) · 1.25 KB

PlayerSeasonSuccessRate

Properties

Name Type Description Notes
season int
id str
name str
position str
team str
conference str
passing PlayerSuccessRateSplit
rushing PlayerSuccessRateSplit

Example

from cfbd.models.player_season_success_rate import PlayerSeasonSuccessRate

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

# convert the object into a dict
player_season_success_rate_dict = player_season_success_rate_instance.to_dict()
# create an instance of PlayerSeasonSuccessRate from a dict
player_season_success_rate_from_dict = PlayerSeasonSuccessRate.from_dict(player_season_success_rate_dict)

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