Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

InlineHookChannelConfigAuthScheme

Properties

Name Type Description Notes
key str [optional]
type str [optional]
value str [optional]

Example

from okta.models.inline_hook_channel_config_auth_scheme import InlineHookChannelConfigAuthScheme

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

# convert the object into a dict
inline_hook_channel_config_auth_scheme_dict = inline_hook_channel_config_auth_scheme_instance.to_dict()
# create an instance of InlineHookChannelConfigAuthScheme from a dict
inline_hook_channel_config_auth_scheme_from_dict = InlineHookChannelConfigAuthScheme.from_dict(inline_hook_channel_config_auth_scheme_dict)

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