| Name |
Type |
Description |
Notes |
| expires_at |
datetime |
Timestamp at which the event expires (expressed as a UTC time zone using ISO 8601 format: yyyy-MM-dd`T`HH:mm:ss.SSS`Z`). If this optional field isn't included, Okta automatically expires the event 24 hours after the event is consumed. |
[optional] |
| subjects |
List[RiskEventSubject] |
List of risk event subjects |
|
| timestamp |
datetime |
Timestamp of when the event is produced (expressed as a UTC time zone using ISO 8601 format: yyyy-MM-dd`T`HH:mm:ss.SSS`Z`) |
[optional] |
from okta.models.risk_event import RiskEvent
# TODO update the JSON string below
json = "{}"
# create an instance of RiskEvent from a JSON string
risk_event_instance = RiskEvent.from_json(json)
# print the JSON string representation of the object
print(RiskEvent.to_json())
# convert the object into a dict
risk_event_dict = risk_event_instance.to_dict()
# create an instance of RiskEvent from a dict
risk_event_from_dict = RiskEvent.from_dict(risk_event_dict)
[Back to Model list] [Back to API list] [Back to README]