Name | Type | Description | Notes |
---|---|---|---|
id | str | Webhooks subscription id | [optional] |
sink | str | Webhooks callback uri. | [optional] |
verified | bool | [Read Only] True if the webhooks subscription has been verified. | [optional] |
types | List[EventType] | Webhooks events types. | [optional] |
config | WebhooksSubscriptionConfig | [optional] |
from fattureincloud_python_sdk.models.webhooks_subscription import WebhooksSubscription
# TODO update the JSON string below
json = "{}"
# create an instance of WebhooksSubscription from a JSON string
webhooks_subscription_instance = WebhooksSubscription.from_json(json)
# print the JSON string representation of the object
print(WebhooksSubscription.to_json())
# convert the object into a dict
webhooks_subscription_dict = webhooks_subscription_instance.to_dict()
# create an instance of WebhooksSubscription from a dict
webhooks_subscription_from_dict = WebhooksSubscription.from_dict(webhooks_subscription_dict)