Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

UpdateFrequencies

Properties

Name Type Description Notes
daily DateRangeStatus [optional]
weekly DateRangeStatus [optional]
monthly DateRangeStatus [optional]

Example

from whoisfreaks.models.update_frequencies import UpdateFrequencies

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

# convert the object into a dict
update_frequencies_dict = update_frequencies_instance.to_dict()
# create an instance of UpdateFrequencies from a dict
update_frequencies_from_dict = UpdateFrequencies.from_dict(update_frequencies_dict)

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