Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

SupportedMethodsSettings

Properties

Name Type Description Notes
key_protection str [optional]
algorithms List[AuthenticatorMethodAlgorithm] [optional]
transaction_types List[AuthenticatorMethodTransactionType] [optional]

Example

from okta.models.supported_methods_settings import SupportedMethodsSettings

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

# convert the object into a dict
supported_methods_settings_dict = supported_methods_settings_instance.to_dict()
# create an instance of SupportedMethodsSettings from a dict
supported_methods_settings_from_dict = SupportedMethodsSettings.from_dict(supported_methods_settings_dict)

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