Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.37 KB

File metadata and controls

39 lines (31 loc) · 1.37 KB

PlayerGameSuccessRate

Properties

Name Type Description Notes
season int
season_type SeasonTypeDB
week int
game_id int
id str
name str
position str
team str
conference str
opponent str
passing PlayerSuccessRateSplit
rushing PlayerSuccessRateSplit

Example

from cfbd.models.player_game_success_rate import PlayerGameSuccessRate

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

# convert the object into a dict
player_game_success_rate_dict = player_game_success_rate_instance.to_dict()
# create an instance of PlayerGameSuccessRate from a dict
player_game_success_rate_from_dict = PlayerGameSuccessRate.from_dict(player_game_success_rate_dict)

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