MfaEvent
Properties
| Name |
Type |
Description |
Notes |
| application |
str |
The name of the application associated with the MFA event. |
[optional] |
| client_device |
ClientDevice |
|
[optional] |
| reason |
str |
The reason for the result of the MFA event. When the `result` is `DENIED`, this field contains information on why the MFA event failed. |
[optional] |
| result |
str |
The result of the MFA event. |
[optional] |
| second_factor |
str |
The second factor used for the MFA event. |
[optional] |
| timestamp |
datetime |
The time (in UTC) at which the user logged in to the MFA event, represented using the RFC-3339 standard. |
[optional] |
| uid |
str |
The unique identifier, represented as a UUID, of the MFA event. |
|
| username |
str |
The name of the user associated with the MFA event. |
|
Example
from scc_firewall_manager_sdk.models.mfa_event import MfaEvent
# TODO update the JSON string below
json = "{}"
# create an instance of MfaEvent from a JSON string
mfa_event_instance = MfaEvent.from_json(json)
# print the JSON string representation of the object
print(MfaEvent.to_json())
# convert the object into a dict
mfa_event_dict = mfa_event_instance.to_dict()
# create an instance of MfaEvent from a dict
mfa_event_form_dict = mfa_event.from_dict(mfa_event_dict)
[Back to Model list] [Back to API list] [Back to README]