Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

WebhookSubscriptionError

Properties

Name Type Description Notes
code int [optional]
description str [optional]
telephone_numbers List[TelephoneNumber] [optional]

Example

from bandwidth.models.webhook_subscription_error import WebhookSubscriptionError

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

# convert the object into a dict
webhook_subscription_error_dict = webhook_subscription_error_instance.to_dict()
# create an instance of WebhookSubscriptionError from a dict
webhook_subscription_error_from_dict = WebhookSubscriptionError.from_dict(webhook_subscription_error_dict)

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