Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.67 KB

File metadata and controls

38 lines (29 loc) · 1.67 KB

UserFactor

Properties

Name Type Description Notes
created datetime Timestamp when the factor was enrolled [optional] [readonly]
factor_type UserFactorType [optional]
id str ID of the factor [optional] [readonly]
last_updated datetime Timestamp when the factor was last updated [optional] [readonly]
profile object Specific attributes related to the factor [optional]
provider str Provider for the factor. Each provider can support a subset of factor types. [optional]
status UserFactorStatus [optional]
vendor_name str Name of the factor vendor. This is usually the same as the provider except for On-Prem MFA, which depends on admin settings. [optional] [readonly]
embedded Dict[str, object] [optional] [readonly]
links UserFactorLinks [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]