Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 994 Bytes

File metadata and controls

31 lines (22 loc) · 994 Bytes

VideoAttachment

Properties

Name Type Description Notes
type str
video MediaFile
preview MediaFile

Example

from postmypost_rest_sdk.models.video_attachment import VideoAttachment

# TODO update the JSON string below
json = "{}"
# create an instance of VideoAttachment from a JSON string
video_attachment_instance = VideoAttachment.from_json(json)
# print the JSON string representation of the object
print(VideoAttachment.to_json())

# convert the object into a dict
video_attachment_dict = video_attachment_instance.to_dict()
# create an instance of VideoAttachment from a dict
video_attachment_from_dict = VideoAttachment.from_dict(video_attachment_dict)

[Back to Model list] [Back to API list] [Back to README]