| Name |
Type |
Description |
Notes |
| duration |
str |
زمان ویدیو به ثانیه |
|
| name |
str |
نام ویدیو (از فیلد `video_name` در پاسخ آپلود) |
|
| thumbnail_name |
str |
کاور ویدیو (از فیلد `thumbnail_name` در پاسخ آپلود). فریم اول ویدیوی آپلودشده است. |
|
from kenar_api_client.models.post_general_data_post_video import PostGeneralDataPostVideo
# TODO update the JSON string below
json = "{}"
# create an instance of PostGeneralDataPostVideo from a JSON string
post_general_data_post_video_instance = PostGeneralDataPostVideo.from_json(json)
# print the JSON string representation of the object
print(PostGeneralDataPostVideo.to_json())
# convert the object into a dict
post_general_data_post_video_dict = post_general_data_post_video_instance.to_dict()
# create an instance of PostGeneralDataPostVideo from a dict
post_general_data_post_video_from_dict = PostGeneralDataPostVideo.from_dict(post_general_data_post_video_dict)
[Back to Model list] [Back to API list] [Back to README]