from okta.models.inline_hook_channel_http import InlineHookChannelHttp
# TODO update the JSON string below
json = "{}"
# create an instance of InlineHookChannelHttp from a JSON string
inline_hook_channel_http_instance = InlineHookChannelHttp.from_json(json)
# print the JSON string representation of the object
print(InlineHookChannelHttp.to_json())
# convert the object into a dict
inline_hook_channel_http_dict = inline_hook_channel_http_instance.to_dict()
# create an instance of InlineHookChannelHttp from a dict
inline_hook_channel_http_from_dict = InlineHookChannelHttp.from_dict(inline_hook_channel_http_dict)
[Back to Model list] [Back to API list] [Back to README]