Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1015 Bytes

File metadata and controls

33 lines (25 loc) · 1015 Bytes

Conference

Properties

Name Type Description Notes
id int
name str
short_name str
abbreviation str
classification ConferenceClassification
member_count int

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]