Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.29 KB

File metadata and controls

30 lines (21 loc) · 1.29 KB

GroupRemoteInfoPagerdutyOnCallSchedule

Remote info for PagerDuty on-call schedule group.

Properties

Name Type Description Notes
schedule_id str The id of the PagerDuty on-call schedule.

Example

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)

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