Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.21 KB

WebhooksSubscription.md

File metadata and controls

31 lines (23 loc) · 1.21 KB

WebhooksSubscription

Properties

Name Type Description Notes
id str Unique identifier [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]

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_form_dict = webhooks_subscription.from_dict(webhooks_subscription_dict)

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