Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

File metadata and controls

31 lines (22 loc) · 1.25 KB

EventHookChannelConfigAuthScheme

Properties

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

Example

from okta.models.event_hook_channel_config_auth_scheme import EventHookChannelConfigAuthScheme

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

# convert the object into a dict
event_hook_channel_config_auth_scheme_dict = event_hook_channel_config_auth_scheme_instance.to_dict()
# create an instance of EventHookChannelConfigAuthScheme from a dict
event_hook_channel_config_auth_scheme_from_dict = EventHookChannelConfigAuthScheme.from_dict(event_hook_channel_config_auth_scheme_dict)

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