Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

SupportedMethods

Properties

Name Type Description Notes
settings SupportedMethodsSettings [optional]
status str [optional]
type str [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]