Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 886 Bytes

DraftPosition.md

File metadata and controls

29 lines (21 loc) · 886 Bytes

DraftPosition

Properties

Name Type Description Notes
name str
abbreviation str

Example

from cbbd.models.draft_position import DraftPosition

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

# convert the object into a dict
draft_position_dict = draft_position_instance.to_dict()
# create an instance of DraftPosition from a dict
draft_position_from_dict = DraftPosition.from_dict(draft_position_dict)

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