Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 902 Bytes

WhatAppWebHook.md

File metadata and controls

29 lines (20 loc) · 902 Bytes

WhatAppWebHook

Properties

Name Type Description Notes
entry List[Dict[str, object]]

Example

from iblai.models.what_app_web_hook import WhatAppWebHook

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

# convert the object into a dict
what_app_web_hook_dict = what_app_web_hook_instance.to_dict()
# create an instance of WhatAppWebHook from a dict
what_app_web_hook_from_dict = WhatAppWebHook.from_dict(what_app_web_hook_dict)

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