Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1016 Bytes

TfvBasicAuthentication.md

File metadata and controls

30 lines (21 loc) · 1016 Bytes

TfvBasicAuthentication

Properties

Name Type Description Notes
username str
password str

Example

from bandwidth.models.tfv_basic_authentication import TfvBasicAuthentication

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

# convert the object into a dict
tfv_basic_authentication_dict = tfv_basic_authentication_instance.to_dict()
# create an instance of TfvBasicAuthentication from a dict
tfv_basic_authentication_from_dict = TfvBasicAuthentication.from_dict(tfv_basic_authentication_dict)

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