Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.16 KB

File metadata and controls

33 lines (24 loc) · 1.16 KB

WhatsAppVideo

WhatsApp video content. Either "id" or "link" must be provided, but not both.

Properties

Name Type Description Notes
id str Unique identifier for the video file. [optional]
caption str Caption for the video. [optional]
mime_type str MIME type of the video file. [optional]
link str URL link to the video file. [optional]

Example

from messente_api.models.whats_app_video import WhatsAppVideo

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

# convert the object into a dict
whats_app_video_dict = whats_app_video_instance.to_dict()
# create an instance of WhatsAppVideo from a dict
whats_app_video_from_dict = WhatsAppVideo.from_dict(whats_app_video_dict)

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