Remote info for PagerDuty on-call schedule group.
| Name | Type | Description | Notes |
|---|---|---|---|
| schedule_id | str | The id of the PagerDuty on-call schedule. |
from opal_security.models.group_remote_info_pagerduty_on_call_schedule import GroupRemoteInfoPagerdutyOnCallSchedule
# TODO update the JSON string below
json = "{}"
# create an instance of GroupRemoteInfoPagerdutyOnCallSchedule from a JSON string
group_remote_info_pagerduty_on_call_schedule_instance = GroupRemoteInfoPagerdutyOnCallSchedule.from_json(json)
# print the JSON string representation of the object
print(GroupRemoteInfoPagerdutyOnCallSchedule.to_json())
# convert the object into a dict
group_remote_info_pagerduty_on_call_schedule_dict = group_remote_info_pagerduty_on_call_schedule_instance.to_dict()
# create an instance of GroupRemoteInfoPagerdutyOnCallSchedule from a dict
group_remote_info_pagerduty_on_call_schedule_from_dict = GroupRemoteInfoPagerdutyOnCallSchedule.from_dict(group_remote_info_pagerduty_on_call_schedule_dict)