Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

VerifyWebhooksSubscription

Properties

Name Type Description Notes
id str Webhooks subscription id [optional]
verification_method WebhooksSubscriptionVerificationMethod [optional]

Example

from fattureincloud_python_sdk.models.verify_webhooks_subscription import VerifyWebhooksSubscription

# TODO update the JSON string below
json = "{}"
# create an instance of VerifyWebhooksSubscription from a JSON string
verify_webhooks_subscription_instance = VerifyWebhooksSubscription.from_json(json)
# print the JSON string representation of the object
print(VerifyWebhooksSubscription.to_json())

# convert the object into a dict
verify_webhooks_subscription_dict = verify_webhooks_subscription_instance.to_dict()
# create an instance of VerifyWebhooksSubscription from a dict
verify_webhooks_subscription_from_dict = VerifyWebhooksSubscription.from_dict(verify_webhooks_subscription_dict)

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