Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.98 KB

File metadata and controls

36 lines (28 loc) · 1.98 KB

TeamStatsLeaderboardShotProfile

Properties

Name Type Description Notes
assisted_pct float
at_rim TeamStatsLeaderboardShotProfileAtRim
dunk TeamStatsLeaderboardShotProfileDunk
layup TeamStatsLeaderboardShotProfileDunk
tip_in TeamStatsLeaderboardShotProfileTipIn
two_point_jumper TeamStatsLeaderboardShotProfileTwoPointJumper
three_point_jumper TeamStatsLeaderboardShotProfileTwoPointJumper
free_throws TeamStatsLeaderboardShotProfileFreeThrows
distribution TeamStatsLeaderboardShotProfileDistribution

Example

from cbbd.models.team_stats_leaderboard_shot_profile import TeamStatsLeaderboardShotProfile

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

# convert the object into a dict
team_stats_leaderboard_shot_profile_dict = team_stats_leaderboard_shot_profile_instance.to_dict()
# create an instance of TeamStatsLeaderboardShotProfile from a dict
team_stats_leaderboard_shot_profile_from_dict = TeamStatsLeaderboardShotProfile.from_dict(team_stats_leaderboard_shot_profile_dict)

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