Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.21 KB

File metadata and controls

29 lines (20 loc) · 1.21 KB

HostingV1DomainsFreeSubdomainResource

Properties

Name Type Description Notes
domain str Generated free subdomain [optional]

Example

from hostinger_api.models.hosting_v1_domains_free_subdomain_resource import HostingV1DomainsFreeSubdomainResource

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

# convert the object into a dict
hosting_v1_domains_free_subdomain_resource_dict = hosting_v1_domains_free_subdomain_resource_instance.to_dict()
# create an instance of HostingV1DomainsFreeSubdomainResource from a dict
hosting_v1_domains_free_subdomain_resource_from_dict = HostingV1DomainsFreeSubdomainResource.from_dict(hosting_v1_domains_free_subdomain_resource_dict)

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