Basic authentication credentials are not required, but if present, both username and password must be provided.
| Name | Type | Description | Notes |
|---|---|---|---|
| username | str | ||
| password | str |
frombandwidth.models.webhook_subscription_basic_authenticationimportWebhookSubscriptionBasicAuthentication# TODO update the JSON string belowjson="{}"# create an instance of WebhookSubscriptionBasicAuthentication from a JSON stringwebhook_subscription_basic_authentication_instance=WebhookSubscriptionBasicAuthentication.from_json(json)
# print the JSON string representation of the objectprint(WebhookSubscriptionBasicAuthentication.to_json())
# convert the object into a dictwebhook_subscription_basic_authentication_dict=webhook_subscription_basic_authentication_instance.to_dict()
# create an instance of WebhookSubscriptionBasicAuthentication from a dictwebhook_subscription_basic_authentication_from_dict=WebhookSubscriptionBasicAuthentication.from_dict(webhook_subscription_basic_authentication_dict)