Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

InlineHookOAuthChannelConfig

Properties

Name Type Description Notes
auth_type str The authentication method for the token endpoint [optional]

Example

from okta.models.inline_hook_o_auth_channel_config import InlineHookOAuthChannelConfig

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

# convert the object into a dict
inline_hook_o_auth_channel_config_dict = inline_hook_o_auth_channel_config_instance.to_dict()
# create an instance of InlineHookOAuthChannelConfig from a dict
inline_hook_o_auth_channel_config_from_dict = InlineHookOAuthChannelConfig.from_dict(inline_hook_o_auth_channel_config_dict)

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