Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.25 KB

File metadata and controls

29 lines (20 loc) · 1.25 KB

HorizonsV1WebsitesWebsiteUrlResource

Properties

Name Type Description Notes
website_url str The website URL for the user to access their website in Hostinger Horizons interface

Example

from hostinger_api.models.horizons_v1_websites_website_url_resource import HorizonsV1WebsitesWebsiteUrlResource

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

# convert the object into a dict
horizons_v1_websites_website_url_resource_dict = horizons_v1_websites_website_url_resource_instance.to_dict()
# create an instance of HorizonsV1WebsitesWebsiteUrlResource from a dict
horizons_v1_websites_website_url_resource_from_dict = HorizonsV1WebsitesWebsiteUrlResource.from_dict(horizons_v1_websites_website_url_resource_dict)

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