Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.47 KB

AdvancedBoxScoreTeams.md

File metadata and controls

35 lines (27 loc) · 1.47 KB

AdvancedBoxScoreTeams

Properties

Name Type Description Notes
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]