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] |
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)