Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

File metadata and controls

29 lines (20 loc) · 1.06 KB

UserFactorPushTransaction

Properties

Name Type Description Notes
factor_result str Result of the verification transaction [optional]

Example

from okta.models.user_factor_push_transaction import UserFactorPushTransaction

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

# convert the object into a dict
user_factor_push_transaction_dict = user_factor_push_transaction_instance.to_dict()
# create an instance of UserFactorPushTransaction from a dict
user_factor_push_transaction_from_dict = UserFactorPushTransaction.from_dict(user_factor_push_transaction_dict)

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