| Name | Type | Description | Notes |
|---|---|---|---|
| newly | NewlyStatus | [optional] | |
| expired | DateRangeStatus | [optional] | |
| cleaned_expired | DateRangeStatus | [optional] | |
| dropped | DateRangeStatus | [optional] | |
| dropped_with_backlinks | DateRangeStatus | [optional] | |
| database_updates | DatabaseUpdates | [optional] |
from whoisfreaks.models.database_file_status import DatabaseFileStatus
# TODO update the JSON string below
json = "{}"
# create an instance of DatabaseFileStatus from a JSON string
database_file_status_instance = DatabaseFileStatus.from_json(json)
# print the JSON string representation of the object
print(DatabaseFileStatus.to_json())
# convert the object into a dict
database_file_status_dict = database_file_status_instance.to_dict()
# create an instance of DatabaseFileStatus from a dict
database_file_status_from_dict = DatabaseFileStatus.from_dict(database_file_status_dict)