Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 806 Bytes

JobTitle.md

File metadata and controls

29 lines (20 loc) · 806 Bytes

JobTitle

Job title of the user

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.job_title import JobTitle

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

# convert the object into a dict
job_title_dict = job_title_instance.to_dict()
# create an instance of JobTitle from a dict
job_title_form_dict = job_title.from_dict(job_title_dict)

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