| Name |
Type |
Description |
Notes |
| conference |
str |
|
|
| name |
str |
|
|
| id |
int |
|
|
from cbbd.models.recruit_committed_to import RecruitCommittedTo
# TODO update the JSON string below
json = "{}"
# create an instance of RecruitCommittedTo from a JSON string
recruit_committed_to_instance = RecruitCommittedTo.from_json(json)
# print the JSON string representation of the object
print RecruitCommittedTo.to_json()
# convert the object into a dict
recruit_committed_to_dict = recruit_committed_to_instance.to_dict()
# create an instance of RecruitCommittedTo from a dict
recruit_committed_to_from_dict = RecruitCommittedTo.from_dict(recruit_committed_to_dict)
[Back to Model list] [Back to API list] [Back to README]