| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| url |
str |
|
|
| image_urls |
List[str] |
|
|
| created_at |
str |
|
|
from unifapi.models.linkedin_user_image import LinkedinUserImage
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinUserImage from a JSON string
linkedin_user_image_instance = LinkedinUserImage.from_json(json)
# print the JSON string representation of the object
print(LinkedinUserImage.to_json())
# convert the object into a dict
linkedin_user_image_dict = linkedin_user_image_instance.to_dict()
# create an instance of LinkedinUserImage from a dict
linkedin_user_image_from_dict = LinkedinUserImage.from_dict(linkedin_user_image_dict)
[Back to Model list] [Back to API list] [Back to README]