Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 915 Bytes

File metadata and controls

29 lines (20 loc) · 915 Bytes

SignOnInlineHook

Properties

Name Type Description Notes
id str [optional]

Example

from okta.models.sign_on_inline_hook import SignOnInlineHook

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

# convert the object into a dict
sign_on_inline_hook_dict = sign_on_inline_hook_instance.to_dict()
# create an instance of SignOnInlineHook from a dict
sign_on_inline_hook_from_dict = SignOnInlineHook.from_dict(sign_on_inline_hook_dict)

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