Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

WebhooksSubscription.md

File metadata and controls

33 lines (24 loc) · 1.31 KB

WebhooksSubscription

Properties

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]

Example

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)

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