from moonsdk.models.i_webhook import IWebhook# TODO update the JSON string belowjson ="{}"# create an instance of IWebhook from a JSON stringi_webhook_instance = IWebhook.from_json(json)# print the JSON string representation of the objectprint IWebhook.to_json()# convert the object into a dicti_webhook_dict = i_webhook_instance.to_dict()# create an instance of IWebhook from a dicti_webhook_form_dict = i_webhook.from_dict(i_webhook_dict)