| Name | Type | Description | Notes |
|---|---|---|---|
| credentials | CredentialsResponseCredentials | ||
| login_url | str | WordPress admin dashboard URL |
from plesk_wp_toolkit_client.models.credentials_response import CredentialsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CredentialsResponse from a JSON string
credentials_response_instance = CredentialsResponse.from_json(json)
# print the JSON string representation of the object
print(CredentialsResponse.to_json())
# convert the object into a dict
credentials_response_dict = credentials_response_instance.to_dict()
# create an instance of CredentialsResponse from a dict
credentials_response_from_dict = CredentialsResponse.from_dict(credentials_response_dict)