Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

PasswordProtectionResponse

Properties

Name Type Description Notes
available bool Availability of password protection feature
status bool Status
credentials PasswordProtectionResponseCredentials

Example

from plesk_wp_toolkit_client.models.password_protection_response import PasswordProtectionResponse

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

# convert the object into a dict
password_protection_response_dict = password_protection_response_instance.to_dict()
# create an instance of PasswordProtectionResponse from a dict
password_protection_response_from_dict = PasswordProtectionResponse.from_dict(password_protection_response_dict)

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