Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

WebhookSubscriptionBasicAuthentication.md

File metadata and controls

31 lines (22 loc) · 1.31 KB

WebhookSubscriptionBasicAuthentication

Basic authentication credentials are not required, but if present, both username and password must be provided.

Properties

Name Type Description Notes
username str
password str

Example

from bandwidth.models.webhook_subscription_basic_authentication import WebhookSubscriptionBasicAuthentication

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

# convert the object into a dict
webhook_subscription_basic_authentication_dict = webhook_subscription_basic_authentication_instance.to_dict()
# create an instance of WebhookSubscriptionBasicAuthentication from a dict
webhook_subscription_basic_authentication_from_dict = WebhookSubscriptionBasicAuthentication.from_dict(webhook_subscription_basic_authentication_dict)

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