Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

CreateWebhooksSubscriptionResponse.md

File metadata and controls

30 lines (21 loc) · 1.26 KB

CreateWebhooksSubscriptionResponse

Properties

Name Type Description Notes
data WebhooksSubscription [optional]
warnings List[str] Webhooks registration warnings [optional]

Example

from fattureincloud_python_sdk.models.create_webhooks_subscription_response import CreateWebhooksSubscriptionResponse

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

# convert the object into a dict
create_webhooks_subscription_response_dict = create_webhooks_subscription_response_instance.to_dict()
# create an instance of CreateWebhooksSubscriptionResponse from a dict
create_webhooks_subscription_response_from_dict = CreateWebhooksSubscriptionResponse.from_dict(create_webhooks_subscription_response_dict)

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