API bindings for the Lilt REST API.
Name | Type | Description | Notes |
---|---|---|---|
webhook_url | str | The URL to which the webhook notifications will be sent. |
from lilt.models.webhooks_update_request_any_of1 import WebhooksUpdateRequestAnyOf1
# TODO update the JSON string below
json = "{}"
# create an instance of WebhooksUpdateRequestAnyOf1 from a JSON string
webhooks_update_request_any_of1_instance = WebhooksUpdateRequestAnyOf1.from_json(json)
# print the JSON string representation of the object
print(WebhooksUpdateRequestAnyOf1.to_json())
# convert the object into a dict
webhooks_update_request_any_of1_dict = webhooks_update_request_any_of1_instance.to_dict()
# create an instance of WebhooksUpdateRequestAnyOf1 from a dict
webhooks_update_request_any_of1_from_dict = WebhooksUpdateRequestAnyOf1.from_dict(webhooks_update_request_any_of1_dict)