Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

AuthenticatorProvider

Properties

Name Type Description Notes
configuration AuthenticatorProviderConfiguration [optional]
type str [optional]

Example

from okta.models.authenticator_provider import AuthenticatorProvider

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

# convert the object into a dict
authenticator_provider_dict = authenticator_provider_instance.to_dict()
# create an instance of AuthenticatorProvider from a dict
authenticator_provider_from_dict = AuthenticatorProvider.from_dict(authenticator_provider_dict)

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