Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.35 KB

File metadata and controls

35 lines (26 loc) · 1.35 KB

AuthenticatorMethodOtp

Properties

Name Type Description Notes
acceptable_adjacent_intervals int [optional]
algorithm OtpTotpAlgorithm [optional]
encoding OtpTotpEncoding [optional]
factor_profile_id str [optional]
pass_code_length int [optional]
protocol OtpProtocol [optional]
time_interval_in_seconds int [optional]

Example

from okta.models.authenticator_method_otp import AuthenticatorMethodOtp

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

# convert the object into a dict
authenticator_method_otp_dict = authenticator_method_otp_instance.to_dict()
# create an instance of AuthenticatorMethodOtp from a dict
authenticator_method_otp_from_dict = AuthenticatorMethodOtp.from_dict(authenticator_method_otp_dict)

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