| 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] |
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)