| 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] |
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)