| Name | Type | Description | Notes |
|---|---|---|---|
| ppa | List[PlayerPPA] | ||
| usage | List[PlayerGameUsage] | ||
| rushing | List[PlayerRushingGame] | Enriched rushing by athlete ID, including direction coverage. | |
| passing | List[PlayerPassingGame] | Enriched passing by athlete ID, including location coverage. |
from cfbd.models.advanced_box_score_players import AdvancedBoxScorePlayers
# TODO update the JSON string below
json = "{}"
# create an instance of AdvancedBoxScorePlayers from a JSON string
advanced_box_score_players_instance = AdvancedBoxScorePlayers.from_json(json)
# print the JSON string representation of the object
print AdvancedBoxScorePlayers.to_json()
# convert the object into a dict
advanced_box_score_players_dict = advanced_box_score_players_instance.to_dict()
# create an instance of AdvancedBoxScorePlayers from a dict
advanced_box_score_players_from_dict = AdvancedBoxScorePlayers.from_dict(advanced_box_score_players_dict)