Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

PasswordProtectionRequestCredentials

Properties

Name Type Description Notes
username str
password str

Example

from plesk_wp_toolkit_client.models.password_protection_request_credentials import PasswordProtectionRequestCredentials

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

# convert the object into a dict
password_protection_request_credentials_dict = password_protection_request_credentials_instance.to_dict()
# create an instance of PasswordProtectionRequestCredentials from a dict
password_protection_request_credentials_from_dict = PasswordProtectionRequestCredentials.from_dict(password_protection_request_credentials_dict)

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