Name |
Type |
Description |
Notes |
team |
str |
|
|
name |
str |
|
|
id |
int |
|
|
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]