Name | Type | Description | Notes |
---|---|---|---|
name | str | ||
id | int |
from cbbd.models.shot_info_shooter import ShotInfoShooter
# TODO update the JSON string below
json = "{}"
# create an instance of ShotInfoShooter from a JSON string
shot_info_shooter_instance = ShotInfoShooter.from_json(json)
# print the JSON string representation of the object
print ShotInfoShooter.to_json()
# convert the object into a dict
shot_info_shooter_dict = shot_info_shooter_instance.to_dict()
# create an instance of ShotInfoShooter from a dict
shot_info_shooter_from_dict = ShotInfoShooter.from_dict(shot_info_shooter_dict)