Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.39 KB

File metadata and controls

38 lines (29 loc) · 1.39 KB

UserFactor

Properties

Name Type Description Notes
created datetime [optional] [readonly]
factor_type FactorType [optional]
id str [optional] [readonly]
last_updated datetime [optional] [readonly]
profile object Factor-specific attributes [optional]
provider FactorProvider [optional]
status FactorStatus [optional]
verify VerifyFactorRequest [optional]
embedded Dict[str, object] [optional] [readonly]
links LinksSelf [optional]

Example

from okta.models.user_factor import UserFactor

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

# convert the object into a dict
user_factor_dict = user_factor_instance.to_dict()
# create an instance of UserFactor from a dict
user_factor_from_dict = UserFactor.from_dict(user_factor_dict)

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