Job title of the user
Name | Type | Description | Notes |
---|
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)