Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

File metadata and controls

33 lines (24 loc) · 1.31 KB

IdentityProviderPolicy

Properties

Name Type Description Notes
account_link PolicyAccountLink [optional]
map_amr_claims bool Enable mapping AMR from IdP to Okta to downstream apps [optional] [default to False]
max_clock_skew int [optional]
provisioning Provisioning [optional]
subject PolicySubject [optional]

Example

from okta.models.identity_provider_policy import IdentityProviderPolicy

# TODO update the JSON string below
json = "{}"
# create an instance of IdentityProviderPolicy from a JSON string
identity_provider_policy_instance = IdentityProviderPolicy.from_json(json)
# print the JSON string representation of the object
print(IdentityProviderPolicy.to_json())

# convert the object into a dict
identity_provider_policy_dict = identity_provider_policy_instance.to_dict()
# create an instance of IdentityProviderPolicy from a dict
identity_provider_policy_from_dict = IdentityProviderPolicy.from_dict(identity_provider_policy_dict)

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