| Name |
Type |
Description |
Notes |
| total |
int |
|
|
from unifapi.models.linkedin_job_count import LinkedinJobCount
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinJobCount from a JSON string
linkedin_job_count_instance = LinkedinJobCount.from_json(json)
# print the JSON string representation of the object
print(LinkedinJobCount.to_json())
# convert the object into a dict
linkedin_job_count_dict = linkedin_job_count_instance.to_dict()
# create an instance of LinkedinJobCount from a dict
linkedin_job_count_from_dict = LinkedinJobCount.from_dict(linkedin_job_count_dict)
[Back to Model list] [Back to API list] [Back to README]