Whatsapp datetime object.
| Name | Type | Description | Notes |
|---|---|---|---|
| fallback_value | str | Default text. |
from messente_api.models.whats_app_datetime import WhatsAppDatetime
# TODO update the JSON string below
json = "{}"
# create an instance of WhatsAppDatetime from a JSON string
whats_app_datetime_instance = WhatsAppDatetime.from_json(json)
# print the JSON string representation of the object
print(WhatsAppDatetime.to_json())
# convert the object into a dict
whats_app_datetime_dict = whats_app_datetime_instance.to_dict()
# create an instance of WhatsAppDatetime from a dict
whats_app_datetime_from_dict = WhatsAppDatetime.from_dict(whats_app_datetime_dict)