Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.06 KB

AdvancedBoxScorePlayers.md

File metadata and controls

29 lines (21 loc) · 1.06 KB

AdvancedBoxScorePlayers

Properties

Name Type Description Notes
ppa List[PlayerPPA]
usage List[PlayerGameUsage]

Example

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)

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