| Name |
Type |
Description |
Notes |
| start |
str |
|
|
| end |
str |
|
|
from unifapi.models.linkedin_date_range import LinkedinDateRange
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinDateRange from a JSON string
linkedin_date_range_instance = LinkedinDateRange.from_json(json)
# print the JSON string representation of the object
print(LinkedinDateRange.to_json())
# convert the object into a dict
linkedin_date_range_dict = linkedin_date_range_instance.to_dict()
# create an instance of LinkedinDateRange from a dict
linkedin_date_range_from_dict = LinkedinDateRange.from_dict(linkedin_date_range_dict)
[Back to Model list] [Back to API list] [Back to README]