Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 921 Bytes

ShotInfoLocation.md

File metadata and controls

29 lines (21 loc) · 921 Bytes

ShotInfoLocation

Properties

Name Type Description Notes
y float
x float

Example

from cbbd.models.shot_info_location import ShotInfoLocation

# TODO update the JSON string below
json = "{}"
# create an instance of ShotInfoLocation from a JSON string
shot_info_location_instance = ShotInfoLocation.from_json(json)
# print the JSON string representation of the object
print ShotInfoLocation.to_json()

# convert the object into a dict
shot_info_location_dict = shot_info_location_instance.to_dict()
# create an instance of ShotInfoLocation from a dict
shot_info_location_from_dict = ShotInfoLocation.from_dict(shot_info_location_dict)

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