Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 2.85 KB

File metadata and controls

44 lines (35 loc) · 2.85 KB

AgencyHostingV1WebsitesWebsiteResource

Properties

Name Type Description Notes
uid str Website UID [optional]
ipv4 str IPv4 address [optional]
flavor str Setup flavor [optional]
type str Website type [optional]
description str Description [optional]
state str Website state [optional]
created_at datetime [optional]
domains List[AgencyHostingV1WebsitesWebsiteDomainDetailsResource] Array of `AgencyHosting.V1.Websites.WebsiteDomainDetailsResource` [optional]
preview_domain AgencyHostingV1WebsitesWebsitePreviewDomainResource [optional]
settings AgencyHostingV1WebsitesWebsiteSettingsResource [optional]
wordpress AgencyHostingV1WebsitesWordPressInstallResource [optional]
remote_access AgencyHostingV1WebsitesWebsiteRemoteAccessResource [optional]
server AgencyHostingV1WebsitesWebsiteServerResource [optional]
order AgencyHostingV1WebsitesWebsiteOrderResource [optional]
user AgencyHostingV1WebsitesWebsiteUserResource [optional]
staging_root AgencyHostingV1WebsitesWebsiteStagingRootResource [optional]

Example

from hostinger_api.models.agency_hosting_v1_websites_website_resource import AgencyHostingV1WebsitesWebsiteResource

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

# convert the object into a dict
agency_hosting_v1_websites_website_resource_dict = agency_hosting_v1_websites_website_resource_instance.to_dict()
# create an instance of AgencyHostingV1WebsitesWebsiteResource from a dict
agency_hosting_v1_websites_website_resource_from_dict = AgencyHostingV1WebsitesWebsiteResource.from_dict(agency_hosting_v1_websites_website_resource_dict)

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