Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

VerificationMethod

Properties

Name Type Description Notes
constraints List[AccessPolicyConstraints] [optional]
factor_mode str [optional]
reauthenticate_in str [optional]
type str [optional]

Example

from okta.models.verification_method import VerificationMethod

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

# convert the object into a dict
verification_method_dict = verification_method_instance.to_dict()
# create an instance of VerificationMethod from a dict
verification_method_from_dict = VerificationMethod.from_dict(verification_method_dict)

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