Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 844 Bytes

PlayType.md

File metadata and controls

30 lines (22 loc) · 844 Bytes

PlayType

Properties

Name Type Description Notes
id int
text str
abbreviation str

Example

from cfbd.models.play_type import PlayType

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

# convert the object into a dict
play_type_dict = play_type_instance.to_dict()
# create an instance of PlayType from a dict
play_type_from_dict = PlayType.from_dict(play_type_dict)

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