Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

OktaEventTarget

Target of the specific Okta event.

Properties

Name Type Description Notes
type str Type of the event target.
alternate_id str Identifier of the event target, depending on its type.
display_name str Display name of the event target.

Example

from talon_one.models.okta_event_target import OktaEventTarget

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

# convert the object into a dict
okta_event_target_dict = okta_event_target_instance.to_dict()
# create an instance of OktaEventTarget from a dict
okta_event_target_from_dict = OktaEventTarget.from_dict(okta_event_target_dict)

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