Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

OpenIdConnectApplication

Properties

Name Type Description Notes
credentials OAuthApplicationCredentials
name str `oidc_client` is the key name for an OAuth 2.0 client app instance [default to 'oidc_client']
settings OpenIdConnectApplicationSettings

Example

from okta.models.open_id_connect_application import OpenIdConnectApplication

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

# convert the object into a dict
open_id_connect_application_dict = open_id_connect_application_instance.to_dict()
# create an instance of OpenIdConnectApplication from a dict
open_id_connect_application_from_dict = OpenIdConnectApplication.from_dict(open_id_connect_application_dict)

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