Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

AuthenticationProvider

Properties

Name Type Description Notes
name str [optional]
type AuthenticationProviderType [optional]

Example

from okta.models.authentication_provider import AuthenticationProvider

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

# convert the object into a dict
authentication_provider_dict = authentication_provider_instance.to_dict()
# create an instance of AuthenticationProvider from a dict
authentication_provider_from_dict = AuthenticationProvider.from_dict(authentication_provider_dict)

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