Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

EventHookChannelConfig

Properties

Name Type Description Notes
auth_scheme EventHookChannelConfigAuthScheme [optional]
headers List[EventHookChannelConfigHeader] [optional]
uri str [optional]

Example

from okta.models.event_hook_channel_config import EventHookChannelConfig

# TODO update the JSON string below
json = "{}"
# create an instance of EventHookChannelConfig from a JSON string
event_hook_channel_config_instance = EventHookChannelConfig.from_json(json)
# print the JSON string representation of the object
print(EventHookChannelConfig.to_json())

# convert the object into a dict
event_hook_channel_config_dict = event_hook_channel_config_instance.to_dict()
# create an instance of EventHookChannelConfig from a dict
event_hook_channel_config_from_dict = EventHookChannelConfig.from_dict(event_hook_channel_config_dict)

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