Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.52 KB

GenerateOTP201Response.md

File metadata and controls

31 lines (23 loc) · 1.52 KB

GenerateOTP201Response

Properties

Name Type Description Notes
mfa_token str Token can function as a temporary MFA token. It can be used to authenticate for any app when valid. [optional]
reusable bool true indcates the token can be used multiple times, until it expires. false indicates the token is invalid after a single use or once it expires. Defaults to false. [optional] [default to False]
expires_at str Defines the expiration time and date for the token. Format is UTC time. [optional]
device_id str A unique identifier for the temp otp device that has been created for this token. [optional]

Example

from onelogin.models.generate_otp201_response import GenerateOTP201Response

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

# convert the object into a dict
generate_otp201_response_dict = generate_otp201_response_instance.to_dict()
# create an instance of GenerateOTP201Response from a dict
generate_otp201_response_form_dict = generate_otp201_response.from_dict(generate_otp201_response_dict)

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