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
OnCallSchedule Object ### Description The OnCallSchedule object is used to represent an on call schedule. ### Usage Example Update a groups on call schedule from the UPDATE Groups endpoint.
fromopal_security.models.on_call_scheduleimportOnCallSchedule# TODO update the JSON string belowjson="{}"# create an instance of OnCallSchedule from a JSON stringon_call_schedule_instance=OnCallSchedule.from_json(json)
# print the JSON string representation of the objectprint(OnCallSchedule.to_json())
# convert the object into a dicton_call_schedule_dict=on_call_schedule_instance.to_dict()
# create an instance of OnCallSchedule from a dicton_call_schedule_from_dict=OnCallSchedule.from_dict(on_call_schedule_dict)