Skip to content

Latest commit

 

History

History
54 lines (46 loc) · 1.97 KB

File metadata and controls

54 lines (46 loc) · 1.97 KB

TeamRushingProduction

Properties

Name Type Description Notes
attempts int
rushing_yards_available int
total_rushing_yards int
yards_per_carry float
individual_attempts int
unattributed_attempts int
sacks int
kneels int
team_rushes int
multi_carrier_attempts int
direction_eligible_attempts int
direction_available_attempts int
success_rate float
ppa float
total_ppa float
line_yards float
line_yards_total float
second_level_yards float
second_level_yards_total float
open_field_yards float
open_field_yards_total float
stuff_rate float
power_success float
explosiveness float
directions PlayerRushingSeasonDirections
touchdown_status_available int
rushing_touchdowns int

Example

from cfbd.models.team_rushing_production import TeamRushingProduction

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

# convert the object into a dict
team_rushing_production_dict = team_rushing_production_instance.to_dict()
# create an instance of TeamRushingProduction from a dict
team_rushing_production_from_dict = TeamRushingProduction.from_dict(team_rushing_production_dict)

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