Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

InlineHookChannelConfig

Properties

Name Type Description Notes
auth_scheme InlineHookChannelConfigAuthScheme [optional]
headers List[InlineHookChannelConfigHeaders] [optional]
method str [optional]
uri str [optional]

Example

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)

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