Skip to content

Files

Latest commit

 

History

History
29 lines (21 loc) · 908 Bytes

ShotInfoShooter.md

File metadata and controls

29 lines (21 loc) · 908 Bytes

ShotInfoShooter

Properties

Name Type Description Notes
name str
id int

Example

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)

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