Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

InlineHookResponseCommandValue

Properties

Name Type Description Notes
op str [optional]
path str [optional]
value str [optional]

Example

from okta.models.inline_hook_response_command_value import InlineHookResponseCommandValue

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

# convert the object into a dict
inline_hook_response_command_value_dict = inline_hook_response_command_value_instance.to_dict()
# create an instance of InlineHookResponseCommandValue from a dict
inline_hook_response_command_value_from_dict = InlineHookResponseCommandValue.from_dict(inline_hook_response_command_value_dict)

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