Skip to content

Files

Latest commit

 

History

History
30 lines (22 loc) · 1010 Bytes

PlayInfoOnFloorInner.md

File metadata and controls

30 lines (22 loc) · 1010 Bytes

PlayInfoOnFloorInner

Properties

Name Type Description Notes
team str
name str
id int

Example

from cbbd.models.play_info_on_floor_inner import PlayInfoOnFloorInner

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

# convert the object into a dict
play_info_on_floor_inner_dict = play_info_on_floor_inner_instance.to_dict()
# create an instance of PlayInfoOnFloorInner from a dict
play_info_on_floor_inner_from_dict = PlayInfoOnFloorInner.from_dict(play_info_on_floor_inner_dict)

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