Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

NewlyStatus

Properties

Name Type Description Notes
gtld DateRangeStatus [optional]
cctld DateRangeStatus [optional]
dns DateRangeStatus [optional]
cleaned_gtld DateRangeStatus [optional]
cleaned_cctld DateRangeStatus [optional]

Example

from whoisfreaks.models.newly_status import NewlyStatus

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

# convert the object into a dict
newly_status_dict = newly_status_instance.to_dict()
# create an instance of NewlyStatus from a dict
newly_status_from_dict = NewlyStatus.from_dict(newly_status_dict)

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