Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.01 KB

File metadata and controls

33 lines (25 loc) · 1.01 KB

ShotInfo

Properties

Name Type Description Notes
shooter ShotInfoShooter
made bool
range str
assisted bool
assisted_by ShotInfoShooter
location ShotInfoLocation

Example

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)

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