Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.34 KB

File metadata and controls

34 lines (25 loc) · 1.34 KB

DatabaseFileStatus

Properties

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]

Example

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)

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