Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

SupportedMethods

The supported methods of an authenticator

Properties

Name Type Description Notes
settings SupportedMethodsSettings [optional]
status LifecycleStatus [optional]
type str The type of authenticator method [optional]

Example

from okta.models.supported_methods import SupportedMethods

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

# convert the object into a dict
supported_methods_dict = supported_methods_instance.to_dict()
# create an instance of SupportedMethods from a dict
supported_methods_from_dict = SupportedMethods.from_dict(supported_methods_dict)

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