| Name | Type | Description | Notes |
|---|---|---|---|
| config | InlineHookOAuthChannelConfig | [optional] |
from okta.models.inline_hook_channel_o_auth import InlineHookChannelOAuth
# TODO update the JSON string below
json = "{}"
# create an instance of InlineHookChannelOAuth from a JSON string
inline_hook_channel_o_auth_instance = InlineHookChannelOAuth.from_json(json)
# print the JSON string representation of the object
print(InlineHookChannelOAuth.to_json())
# convert the object into a dict
inline_hook_channel_o_auth_dict = inline_hook_channel_o_auth_instance.to_dict()
# create an instance of InlineHookChannelOAuth from a dict
inline_hook_channel_o_auth_from_dict = InlineHookChannelOAuth.from_dict(inline_hook_channel_o_auth_dict)