Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.79 KB

GetAuthenticationDevices200ResponseInner.md

File metadata and controls

32 lines (24 loc) · 1.79 KB

GetAuthenticationDevices200ResponseInner

Properties

Name Type Description Notes
device_id str MFA device identifier. [optional]
user_display_name str Authentication factor display name assigned by users when they register the device. [optional]
type_display_name str Authentication factor display name as it appears to users upon initial registration, as defined by admins at Settings > Authentication Factors. [optional]
auth_factor_name str Authentication factor name, as it appears to administrators in OneLogin. [optional]
default bool true = is user’s default MFA device for OneLogin. [optional] [default to False]

Example

from onelogin.models.get_authentication_devices200_response_inner import GetAuthenticationDevices200ResponseInner

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

# convert the object into a dict
get_authentication_devices200_response_inner_dict = get_authentication_devices200_response_inner_instance.to_dict()
# create an instance of GetAuthenticationDevices200ResponseInner from a dict
get_authentication_devices200_response_inner_form_dict = get_authentication_devices200_response_inner.from_dict(get_authentication_devices200_response_inner_dict)

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