| Name | Type | Description | Notes |
|---|---|---|---|
| auth_scheme | InlineHookChannelConfigAuthScheme | [optional] | |
| headers | List[InlineHookChannelConfigHeaders] | [optional] | |
| method | str | [optional] | |
| uri | str | [optional] |
from okta.models.inline_hook_channel_config import InlineHookChannelConfig
# TODO update the JSON string below
json = "{}"
# create an instance of InlineHookChannelConfig from a JSON string
inline_hook_channel_config_instance = InlineHookChannelConfig.from_json(json)
# print the JSON string representation of the object
print(InlineHookChannelConfig.to_json())
# convert the object into a dict
inline_hook_channel_config_dict = inline_hook_channel_config_instance.to_dict()
# create an instance of InlineHookChannelConfig from a dict
inline_hook_channel_config_from_dict = InlineHookChannelConfig.from_dict(inline_hook_channel_config_dict)