| Name | Type | Description | Notes |
|---|---|---|---|
| expires_at | datetime | [optional] | |
| factor_result | FactorResultType | [optional] | |
| profile | PushUserFactorProfile | [optional] |
from okta.models.push_user_factor import PushUserFactor
# TODO update the JSON string below
json = "{}"
# create an instance of PushUserFactor from a JSON string
push_user_factor_instance = PushUserFactor.from_json(json)
# print the JSON string representation of the object
print(PushUserFactor.to_json())
# convert the object into a dict
push_user_factor_dict = push_user_factor_instance.to_dict()
# create an instance of PushUserFactor from a dict
push_user_factor_from_dict = PushUserFactor.from_dict(push_user_factor_dict)