| Name |
Type |
Description |
Notes |
| alternate_id |
str |
|
[optional] [readonly] |
| detail_entry |
Dict[str, object] |
|
[optional] [readonly] |
| display_name |
str |
|
[optional] [readonly] |
| id |
str |
|
[optional] [readonly] |
| type |
str |
|
[optional] [readonly] |
from okta.models.log_target import LogTarget
# TODO update the JSON string below
json = "{}"
# create an instance of LogTarget from a JSON string
log_target_instance = LogTarget.from_json(json)
# print the JSON string representation of the object
print(LogTarget.to_json())
# convert the object into a dict
log_target_dict = log_target_instance.to_dict()
# create an instance of LogTarget from a dict
log_target_from_dict = LogTarget.from_dict(log_target_dict)
[Back to Model list] [Back to API list] [Back to README]