Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.28 KB

File metadata and controls

30 lines (22 loc) · 1.28 KB

TeamStatsLeaderboardShotProfileFreeThrows

Properties

Name Type Description Notes
rate float
made float
attempts float

Example

from cbbd.models.team_stats_leaderboard_shot_profile_free_throws import TeamStatsLeaderboardShotProfileFreeThrows

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

# convert the object into a dict
team_stats_leaderboard_shot_profile_free_throws_dict = team_stats_leaderboard_shot_profile_free_throws_instance.to_dict()
# create an instance of TeamStatsLeaderboardShotProfileFreeThrows from a dict
team_stats_leaderboard_shot_profile_free_throws_from_dict = TeamStatsLeaderboardShotProfileFreeThrows.from_dict(team_stats_leaderboard_shot_profile_free_throws_dict)

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