Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.21 KB

AdvancedGameStatOffensePassingDowns.md

File metadata and controls

30 lines (22 loc) · 1.21 KB

AdvancedGameStatOffensePassingDowns

Properties

Name Type Description Notes
explosiveness float
success_rate float
ppa float

Example

from cfbd.models.advanced_game_stat_offense_passing_downs import AdvancedGameStatOffensePassingDowns

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

# convert the object into a dict
advanced_game_stat_offense_passing_downs_dict = advanced_game_stat_offense_passing_downs_instance.to_dict()
# create an instance of AdvancedGameStatOffensePassingDowns from a dict
advanced_game_stat_offense_passing_downs_from_dict = AdvancedGameStatOffensePassingDowns.from_dict(advanced_game_stat_offense_passing_downs_dict)

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