Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 889 Bytes

File metadata and controls

30 lines (21 loc) · 889 Bytes

LogOutcome

Properties

Name Type Description Notes
reason str [optional] [readonly]
result str [optional] [readonly]

Example

from okta.models.log_outcome import LogOutcome

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

# convert the object into a dict
log_outcome_dict = log_outcome_instance.to_dict()
# create an instance of LogOutcome from a dict
log_outcome_from_dict = LogOutcome.from_dict(log_outcome_dict)

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