Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.31 KB

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

NameTypeDescriptionNotes
usernamestr
passwordstr

Example

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)

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