Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.92 KB

File metadata and controls

39 lines (30 loc) · 1.92 KB

HostingV1WebsitesWebsiteResource

Properties

Name Type Description Notes
domain str Website domain. Null for U4S websites with no domain attached. [optional]
vhost_type str Virtual host type. Only present for CloudLinux websites. [optional]
is_enabled bool Whether website is enabled [optional]
username str Username. Not applicable for U4S websites. [optional]
client_id int Client ID [optional]
order_id int Order ID [optional]
created_at datetime Creation date [optional]
root_directory str Root directory path. Only present for CloudLinux websites. [optional]
parent_domain str Parent domain [optional]
website_type str Type of website detected on the underlying platform. [optional]
horizons_uuid str Horizons UUID. Only present for horizons websites. [optional]

Example

from hostinger_api.models.hosting_v1_websites_website_resource import HostingV1WebsitesWebsiteResource

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

# convert the object into a dict
hosting_v1_websites_website_resource_dict = hosting_v1_websites_website_resource_instance.to_dict()
# create an instance of HostingV1WebsitesWebsiteResource from a dict
hosting_v1_websites_website_resource_from_dict = HostingV1WebsitesWebsiteResource.from_dict(hosting_v1_websites_website_resource_dict)

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