Name | Type | Description | Notes |
---|---|---|---|
made | int | ||
attempted | int | ||
pct | float | ||
jumpers | ShootingStats | ||
layups | ShootingStats | ||
dunks | ShootingStats | ||
tip_ins | ShootingStats |
from cbbd.models.lineup_unit_stats_two_pointers import LineupUnitStatsTwoPointers
# TODO update the JSON string below
json = "{}"
# create an instance of LineupUnitStatsTwoPointers from a JSON string
lineup_unit_stats_two_pointers_instance = LineupUnitStatsTwoPointers.from_json(json)
# print the JSON string representation of the object
print LineupUnitStatsTwoPointers.to_json()
# convert the object into a dict
lineup_unit_stats_two_pointers_dict = lineup_unit_stats_two_pointers_instance.to_dict()
# create an instance of LineupUnitStatsTwoPointers from a dict
lineup_unit_stats_two_pointers_from_dict = LineupUnitStatsTwoPointers.from_dict(lineup_unit_stats_two_pointers_dict)