| Name |
Type |
Description |
Notes |
| min |
str |
|
|
| max |
str |
|
|
| currency |
str |
|
|
| pay_period |
str |
|
|
| is_present |
bool |
|
|
from unifapi.models.linkedin_job_salary import LinkedinJobSalary
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinJobSalary from a JSON string
linkedin_job_salary_instance = LinkedinJobSalary.from_json(json)
# print the JSON string representation of the object
print(LinkedinJobSalary.to_json())
# convert the object into a dict
linkedin_job_salary_dict = linkedin_job_salary_instance.to_dict()
# create an instance of LinkedinJobSalary from a dict
linkedin_job_salary_from_dict = LinkedinJobSalary.from_dict(linkedin_job_salary_dict)
[Back to Model list] [Back to API list] [Back to README]