Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.36 KB

File metadata and controls

33 lines (24 loc) · 1.36 KB

IdentityProviderCredentialsTrust

Properties

Name Type Description Notes
audience str [optional]
issuer str [optional]
kid str [optional]
revocation IdentityProviderCredentialsTrustRevocation [optional]
revocation_cache_lifetime int [optional]

Example

from okta.models.identity_provider_credentials_trust import IdentityProviderCredentialsTrust

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

# convert the object into a dict
identity_provider_credentials_trust_dict = identity_provider_credentials_trust_instance.to_dict()
# create an instance of IdentityProviderCredentialsTrust from a dict
identity_provider_credentials_trust_from_dict = IdentityProviderCredentialsTrust.from_dict(identity_provider_credentials_trust_dict)

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