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

PasswordProtectionRequest

Properties

Name Type Description Notes
status bool Status [optional]
credentials PasswordProtectionRequestCredentials [optional]

Example

from plesk_wp_toolkit_client.models.password_protection_request import PasswordProtectionRequest

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

# convert the object into a dict
password_protection_request_dict = password_protection_request_instance.to_dict()
# create an instance of PasswordProtectionRequest from a dict
password_protection_request_from_dict = PasswordProtectionRequest.from_dict(password_protection_request_dict)

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