Name | Type | Description | Notes |
---|---|---|---|
passing_plays | AdvancedGameStatOffensePassingPlays | ||
rushing_plays | AdvancedGameStatOffensePassingPlays | ||
passing_downs | AdvancedGameStatOffensePassingDowns | ||
standard_downs | AdvancedGameStatOffensePassingDowns | ||
open_field_yards_total | int | ||
open_field_yards | float | ||
second_level_yards_total | int | ||
second_level_yards | float | ||
line_yards_total | int | ||
line_yards | float | ||
stuff_rate | float | ||
power_success | float | ||
explosiveness | float | ||
success_rate | float | ||
total_ppa | float | ||
ppa | float | ||
drives | int | ||
plays | int |
from cfbd.models.advanced_game_stat_offense import AdvancedGameStatOffense
# TODO update the JSON string below
json = "{}"
# create an instance of AdvancedGameStatOffense from a JSON string
advanced_game_stat_offense_instance = AdvancedGameStatOffense.from_json(json)
# print the JSON string representation of the object
print AdvancedGameStatOffense.to_json()
# convert the object into a dict
advanced_game_stat_offense_dict = advanced_game_stat_offense_instance.to_dict()
# create an instance of AdvancedGameStatOffense from a dict
advanced_game_stat_offense_from_dict = AdvancedGameStatOffense.from_dict(advanced_game_stat_offense_dict)