| Name |
Type |
Description |
Notes |
| title |
str |
|
|
| publication |
str |
|
|
| description |
str |
|
|
| var_date |
str |
|
|
| publication_url |
str |
|
|
from unifapi.models.linkedin_publication import LinkedinPublication
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinPublication from a JSON string
linkedin_publication_instance = LinkedinPublication.from_json(json)
# print the JSON string representation of the object
print(LinkedinPublication.to_json())
# convert the object into a dict
linkedin_publication_dict = linkedin_publication_instance.to_dict()
# create an instance of LinkedinPublication from a dict
linkedin_publication_from_dict = LinkedinPublication.from_dict(linkedin_publication_dict)
[Back to Model list] [Back to API list] [Back to README]