Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 951 Bytes

DraftTeam.md

File metadata and controls

33 lines (25 loc) · 951 Bytes

DraftTeam

Properties

Name Type Description Notes
id int
source_id float
location str
name str
display_name str
abbreviation str

Example

from cbbd.models.draft_team import DraftTeam

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

# convert the object into a dict
draft_team_dict = draft_team_instance.to_dict()
# create an instance of DraftTeam from a dict
draft_team_from_dict = DraftTeam.from_dict(draft_team_dict)

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