Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.15 KB

EmploymentDetails.md

File metadata and controls

32 lines (24 loc) · 1.15 KB

EmploymentDetails

Properties

Name Type Description Notes
current bool [optional]
teaching_staff bool [optional]
employment_start_date DateTimeObject [optional]
employment_end_date DateTimeObject [optional]
role_text str [optional]

Example

from wonde.models.employment_details import EmploymentDetails

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

# convert the object into a dict
employment_details_dict = employment_details_instance.to_dict()
# create an instance of EmploymentDetails from a dict
employment_details_form_dict = employment_details.from_dict(employment_details_dict)

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