Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

IdentityProviderProperties

Properties

Name Type Description Notes
additional_amr List[str] [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]