| Name | Type | Description | Notes |
|---|---|---|---|
| shooter | ShotInfoShooter | ||
| made | bool | ||
| range | str | ||
| assisted | bool | ||
| assisted_by | ShotInfoShooter | ||
| location | ShotInfoLocation |
from cbbd.models.shot_info import ShotInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ShotInfo from a JSON string
shot_info_instance = ShotInfo.from_json(json)
# print the JSON string representation of the object
print ShotInfo.to_json()
# convert the object into a dict
shot_info_dict = shot_info_instance.to_dict()
# create an instance of ShotInfo from a dict
shot_info_from_dict = ShotInfo.from_dict(shot_info_dict)