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
The domain the website is published on, if it has been published
[optional]
status
str
The website status
created_at
datetime
The website creation date
website_url
str
The website URL for the user to access their website in Hostinger Horizons interface
Example
fromhostinger_api.models.horizons_v1_websites_website_resourceimportHorizonsV1WebsitesWebsiteResource# TODO update the JSON string belowjson="{}"# create an instance of HorizonsV1WebsitesWebsiteResource from a JSON stringhorizons_v1_websites_website_resource_instance=HorizonsV1WebsitesWebsiteResource.from_json(json)
# print the JSON string representation of the objectprint(HorizonsV1WebsitesWebsiteResource.to_json())
# convert the object into a dicthorizons_v1_websites_website_resource_dict=horizons_v1_websites_website_resource_instance.to_dict()
# create an instance of HorizonsV1WebsitesWebsiteResource from a dicthorizons_v1_websites_website_resource_from_dict=HorizonsV1WebsitesWebsiteResource.from_dict(horizons_v1_websites_website_resource_dict)