| Name | Type | Description | Notes |
|---|---|---|---|
| action | RiskProviderAction | [default to RiskProviderAction.LOG_ONLY] | |
| client_id | str | The ID of the OAuth 2.0 service app that's used to send risk events to Okta | |
| created | datetime | Timestamp when the risk provider object was created | [optional] [readonly] |
| id | str | The ID of the risk provider object | [readonly] |
| last_updated | datetime | Timestamp when the risk provider object was last updated | [optional] [readonly] |
| name | str | Name of the risk provider | |
| links | LinksSelf |
from okta.models.risk_provider import RiskProvider
# TODO update the JSON string below
json = "{}"
# create an instance of RiskProvider from a JSON string
risk_provider_instance = RiskProvider.from_json(json)
# print the JSON string representation of the object
print(RiskProvider.to_json())
# convert the object into a dict
risk_provider_dict = risk_provider_instance.to_dict()
# create an instance of RiskProvider from a dict
risk_provider_from_dict = RiskProvider.from_dict(risk_provider_dict)