You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromopal_security.models.create_on_call_schedule_infoimportCreateOnCallScheduleInfo# TODO update the JSON string belowjson="{}"# create an instance of CreateOnCallScheduleInfo from a JSON stringcreate_on_call_schedule_info_instance=CreateOnCallScheduleInfo.from_json(json)
# print the JSON string representation of the objectprint(CreateOnCallScheduleInfo.to_json())
# convert the object into a dictcreate_on_call_schedule_info_dict=create_on_call_schedule_info_instance.to_dict()
# create an instance of CreateOnCallScheduleInfo from a dictcreate_on_call_schedule_info_from_dict=CreateOnCallScheduleInfo.from_dict(create_on_call_schedule_info_dict)