Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.32 KB

File metadata and controls

31 lines (22 loc) · 1.32 KB

PostGeneralDataPostVideo

Properties

Name Type Description Notes
duration str زمان ویدیو به ثانیه
name str نام ویدیو (از فیلد `video_name` در پاسخ آپلود)
thumbnail_name str کاور ویدیو (از فیلد `thumbnail_name` در پاسخ آپلود). فریم اول ویدیوی آپلود‌شده است.

Example

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]