| 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] |
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)