Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 978 Bytes

Conference.md

File metadata and controls

32 lines (24 loc) · 978 Bytes

Conference

Properties

Name Type Description Notes
id int
name str
short_name str
abbreviation str
classification DivisionClassification

Example

from cfbd.models.conference import Conference

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

# convert the object into a dict
conference_dict = conference_instance.to_dict()
# create an instance of Conference from a dict
conference_from_dict = Conference.from_dict(conference_dict)

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