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
Whether the profile is pre-selected when registering new domains of its TLD
[optional]
whois_details
object
WHOIS profile details
[optional]
tld_details
object
TLD details
[optional]
created_at
datetime
[optional]
updated_at
datetime
[optional]
Example
fromhostinger_api.models.domains_v1_whois_profile_resourceimportDomainsV1WHOISProfileResource# TODO update the JSON string belowjson="{}"# create an instance of DomainsV1WHOISProfileResource from a JSON stringdomains_v1_whois_profile_resource_instance=DomainsV1WHOISProfileResource.from_json(json)
# print the JSON string representation of the objectprint(DomainsV1WHOISProfileResource.to_json())
# convert the object into a dictdomains_v1_whois_profile_resource_dict=domains_v1_whois_profile_resource_instance.to_dict()
# create an instance of DomainsV1WHOISProfileResource from a dictdomains_v1_whois_profile_resource_from_dict=DomainsV1WHOISProfileResource.from_dict(domains_v1_whois_profile_resource_dict)