Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.07 KB

File metadata and controls

40 lines (31 loc) · 2.07 KB

HostingV1WordpressWordpressInstallationResource

Properties

Name Type Description Notes
id str WordPress installation (software) id [optional]
username str Hosting account username [optional]
domain str Domain the installation belongs to [optional]
site_title str WordPress site title [optional]
url str WordPress site URL [optional]
directory str Installation directory [optional]
language str WordPress locale [optional]
login str WordPress admin username [optional]
email str WordPress admin email [optional]
is_valid bool Whether the installation is considered valid [optional]
validation_error str Reason the installation is invalid, if any [optional]
created_at datetime Installation creation timestamp [optional]

Example

from hostinger_api.models.hosting_v1_wordpress_wordpress_installation_resource import HostingV1WordpressWordpressInstallationResource

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

# convert the object into a dict
hosting_v1_wordpress_wordpress_installation_resource_dict = hosting_v1_wordpress_wordpress_installation_resource_instance.to_dict()
# create an instance of HostingV1WordpressWordpressInstallationResource from a dict
hosting_v1_wordpress_wordpress_installation_resource_from_dict = HostingV1WordpressWordpressInstallationResource.from_dict(hosting_v1_wordpress_wordpress_installation_resource_dict)

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