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] |
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)