You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromhostinger_api.models.hosting_v1_websites_website_resourceimportHostingV1WebsitesWebsiteResource# TODO update the JSON string belowjson="{}"# create an instance of HostingV1WebsitesWebsiteResource from a JSON stringhosting_v1_websites_website_resource_instance=HostingV1WebsitesWebsiteResource.from_json(json)
# print the JSON string representation of the objectprint(HostingV1WebsitesWebsiteResource.to_json())
# convert the object into a dicthosting_v1_websites_website_resource_dict=hosting_v1_websites_website_resource_instance.to_dict()
# create an instance of HostingV1WebsitesWebsiteResource from a dicthosting_v1_websites_website_resource_from_dict=HostingV1WebsitesWebsiteResource.from_dict(hosting_v1_websites_website_resource_dict)