Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.74 KB

File metadata and controls

37 lines (29 loc) · 1.74 KB

AdvancedBoxScoreTeams

Properties

Name Type Description Notes
rushing_advanced List[TeamRushingGame] Enriched rushing, separate from the legacy rushing section.
passing List[TeamPassingGame] Enriched offense/defense passing; empty when no qualifying rows exist.
field_position List[TeamFieldPosition]
scoring_opportunities List[TeamScoringOpportunities]
havoc List[TeamHavoc]
rushing List[TeamRushingStats]
explosiveness List[TeamExplosiveness]
success_rates List[TeamSuccessRates]
cumulative_ppa List[TeamPPA]
ppa List[TeamPPA]

Example

from cfbd.models.advanced_box_score_teams import AdvancedBoxScoreTeams

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

# convert the object into a dict
advanced_box_score_teams_dict = advanced_box_score_teams_instance.to_dict()
# create an instance of AdvancedBoxScoreTeams from a dict
advanced_box_score_teams_from_dict = AdvancedBoxScoreTeams.from_dict(advanced_box_score_teams_dict)

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