| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| url |
str |
|
|
| duration |
str |
|
|
| like_count |
int |
|
|
| comment_count |
int |
|
|
| thumbnail_url |
str |
|
|
| created_at |
str |
|
|
from unifapi.models.linkedin_user_video import LinkedinUserVideo
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinUserVideo from a JSON string
linkedin_user_video_instance = LinkedinUserVideo.from_json(json)
# print the JSON string representation of the object
print(LinkedinUserVideo.to_json())
# convert the object into a dict
linkedin_user_video_dict = linkedin_user_video_instance.to_dict()
# create an instance of LinkedinUserVideo from a dict
linkedin_user_video_from_dict = LinkedinUserVideo.from_dict(linkedin_user_video_dict)
[Back to Model list] [Back to API list] [Back to README]