Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

CredentialsResponse

Properties

Name Type Description Notes
credentials CredentialsResponseCredentials
login_url str WordPress admin dashboard URL

Example

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)

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