Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

InlineHookChannelOAuth

Properties

Name Type Description Notes
config InlineHookOAuthChannelConfig [optional]

Example

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)

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