Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1009 Bytes

File metadata and controls

30 lines (21 loc) · 1009 Bytes

InlineHookChannel

Properties

Name Type Description Notes
type InlineHookChannelType [optional]
version str [optional]

Example

from okta.models.inline_hook_channel import InlineHookChannel

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

# convert the object into a dict
inline_hook_channel_dict = inline_hook_channel_instance.to_dict()
# create an instance of InlineHookChannel from a dict
inline_hook_channel_from_dict = InlineHookChannel.from_dict(inline_hook_channel_dict)

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