Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.11 KB

PlayerSeasonStatsWinShares.md

File metadata and controls

31 lines (23 loc) · 1.11 KB

PlayerSeasonStatsWinShares

Properties

Name Type Description Notes
total_per40 float
total float
defensive float
offensive float

Example

from cbbd.models.player_season_stats_win_shares import PlayerSeasonStatsWinShares

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

# convert the object into a dict
player_season_stats_win_shares_dict = player_season_stats_win_shares_instance.to_dict()
# create an instance of PlayerSeasonStatsWinShares from a dict
player_season_stats_win_shares_from_dict = PlayerSeasonStatsWinShares.from_dict(player_season_stats_win_shares_dict)

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