from quantcdn.models.v2_crawler_schedule import V2CrawlerSchedule
# TODO update the JSON string below
json = "{}"
# create an instance of V2CrawlerSchedule from a JSON string
v2_crawler_schedule_instance = V2CrawlerSchedule.from_json(json)
# print the JSON string representation of the object
print(V2CrawlerSchedule.to_json())
# convert the object into a dict
v2_crawler_schedule_dict = v2_crawler_schedule_instance.to_dict()
# create an instance of V2CrawlerSchedule from a dict
v2_crawler_schedule_from_dict = V2CrawlerSchedule.from_dict(v2_crawler_schedule_dict)