Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.44 KB

File metadata and controls

36 lines (27 loc) · 1.44 KB

InlineHookOAuthBasicConfig

Properties

Name Type Description Notes
auth_type str [optional]
client_id str [optional]
scope str [optional]
token_url str [optional]
auth_scheme InlineHookChannelConfigAuthScheme [optional]
headers List[InlineHookChannelConfigHeaders] [optional]
method str [optional]
uri str [optional]

Example

from okta.models.inline_hook_o_auth_basic_config import InlineHookOAuthBasicConfig

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

# convert the object into a dict
inline_hook_o_auth_basic_config_dict = inline_hook_o_auth_basic_config_instance.to_dict()
# create an instance of InlineHookOAuthBasicConfig from a dict
inline_hook_o_auth_basic_config_from_dict = InlineHookOAuthBasicConfig.from_dict(inline_hook_o_auth_basic_config_dict)

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