WordPress admin credentials
| Name | Type | Description | Notes |
|---|---|---|---|
| str | |||
| login | str | WordPress admin username | |
| password | str |
from hostinger_api.models.hosting_v1_wordpress_install_wordpress_request_credentials import HostingV1WordpressInstallWordpressRequestCredentials
# TODO update the JSON string below
json = "{}"
# create an instance of HostingV1WordpressInstallWordpressRequestCredentials from a JSON string
hosting_v1_wordpress_install_wordpress_request_credentials_instance = HostingV1WordpressInstallWordpressRequestCredentials.from_json(json)
# print the JSON string representation of the object
print(HostingV1WordpressInstallWordpressRequestCredentials.to_json())
# convert the object into a dict
hosting_v1_wordpress_install_wordpress_request_credentials_dict = hosting_v1_wordpress_install_wordpress_request_credentials_instance.to_dict()
# create an instance of HostingV1WordpressInstallWordpressRequestCredentials from a dict
hosting_v1_wordpress_install_wordpress_request_credentials_from_dict = HostingV1WordpressInstallWordpressRequestCredentials.from_dict(hosting_v1_wordpress_install_wordpress_request_credentials_dict)