The properties in the IdP properties object vary depending on the IdP type
| Name | Type | Description | Notes |
|---|---|---|---|
| aal_value | str | The authentication assurance level (AAL) value for the Login.gov IdP. See Add a Login.gov IdP. Applies to `LOGINGOV` and `LOGINGOV_SANDBOX` IdP types. | [optional] |
| additional_amr | List[str] | The additional Assurance Methods References (AMR) values for Smart Card IdPs. Applies to `X509` IdP type. | [optional] |
| ial_value | str | The type of identity verification (IAL) value for the Login.gov IdP. See Add a Login.gov IdP. Applies to `LOGINGOV` and `LOGINGOV_SANDBOX` IdP types. | [optional] |
| idv_metadata | IdentityProviderPropertiesIdvMetadata | [optional] | |
| inquiry_template_id | str | The ID of the inquiry template from your Persona dashboard. The inquiry template always starts with `itmpl`. Applies to the `IDV_PERSONA` IdP type. |
from okta.models.identity_provider_properties import IdentityProviderProperties
# TODO update the JSON string below
json = "{}"
# create an instance of IdentityProviderProperties from a JSON string
identity_provider_properties_instance = IdentityProviderProperties.from_json(json)
# print the JSON string representation of the object
print(IdentityProviderProperties.to_json())
# convert the object into a dict
identity_provider_properties_dict = identity_provider_properties_instance.to_dict()
# create an instance of IdentityProviderProperties from a dict
identity_provider_properties_from_dict = IdentityProviderProperties.from_dict(identity_provider_properties_dict)