Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

PushUserFactor

Properties

Name Type Description Notes
expires_at datetime [optional]
factor_result FactorResultType [optional]
profile PushUserFactorProfile [optional]

Example

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)

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