Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.47 KB

File metadata and controls

35 lines (26 loc) · 1.47 KB

LogAuthenticationContext

Properties

Name Type Description Notes
authentication_provider LogAuthenticationProvider [optional]
authentication_step int [optional] [readonly]
credential_provider LogCredentialProvider [optional]
credential_type LogCredentialType [optional]
external_session_id str [optional] [readonly]
interface str [optional] [readonly]
issuer LogIssuer [optional]

Example

from okta.models.log_authentication_context import LogAuthenticationContext

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

# convert the object into a dict
log_authentication_context_dict = log_authentication_context_instance.to_dict()
# create an instance of LogAuthenticationContext from a dict
log_authentication_context_from_dict = LogAuthenticationContext.from_dict(log_authentication_context_dict)

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