| Name | Type | Description | Notes |
|---|---|---|---|
| auth_scheme | EventHookChannelConfigAuthScheme | [optional] | |
| headers | List[EventHookChannelConfigHeader] | [optional] | |
| uri | str | [optional] |
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)