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

WhatsAppImage

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

Properties

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

Example

from messente_api.models.whats_app_image import WhatsAppImage

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

# convert the object into a dict
whats_app_image_dict = whats_app_image_instance.to_dict()
# create an instance of WhatsAppImage from a dict
whats_app_image_from_dict = WhatsAppImage.from_dict(whats_app_image_dict)

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