Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

File metadata and controls

30 lines (21 loc) · 1.15 KB

WebhookAuthenticationDataBasic

Properties

Name Type Description Notes
username str The Basic HTTP username.
password str The Basic HTTP password.

Example

from talon_one.models.webhook_authentication_data_basic import WebhookAuthenticationDataBasic

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

# convert the object into a dict
webhook_authentication_data_basic_dict = webhook_authentication_data_basic_instance.to_dict()
# create an instance of WebhookAuthenticationDataBasic from a dict
webhook_authentication_data_basic_from_dict = WebhookAuthenticationDataBasic.from_dict(webhook_authentication_data_basic_dict)

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