Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.31 KB

File metadata and controls

30 lines (22 loc) · 1.31 KB

TeamStatsLeaderboardShotProfileDistribution

Properties

Name Type Description Notes
three_rate float
jumper_rate float
midrange_rate float

Example

from cbbd.models.team_stats_leaderboard_shot_profile_distribution import TeamStatsLeaderboardShotProfileDistribution

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

# convert the object into a dict
team_stats_leaderboard_shot_profile_distribution_dict = team_stats_leaderboard_shot_profile_distribution_instance.to_dict()
# create an instance of TeamStatsLeaderboardShotProfileDistribution from a dict
team_stats_leaderboard_shot_profile_distribution_from_dict = TeamStatsLeaderboardShotProfileDistribution.from_dict(team_stats_leaderboard_shot_profile_distribution_dict)

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