Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.68 KB

CreateWebAuthnRegistrationVerification200ResponseRegistrationOptionsUser.md

File metadata and controls

31 lines (22 loc) · 1.68 KB

CreateWebAuthnRegistrationVerification200ResponseRegistrationOptionsUser

Properties

Name Type Description Notes
id str
name str
display_name str

Example

from py_logto.models.create_web_authn_registration_verification200_response_registration_options_user import CreateWebAuthnRegistrationVerification200ResponseRegistrationOptionsUser

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

# convert the object into a dict
create_web_authn_registration_verification200_response_registration_options_user_dict = create_web_authn_registration_verification200_response_registration_options_user_instance.to_dict()
# create an instance of CreateWebAuthnRegistrationVerification200ResponseRegistrationOptionsUser from a dict
create_web_authn_registration_verification200_response_registration_options_user_from_dict = CreateWebAuthnRegistrationVerification200ResponseRegistrationOptionsUser.from_dict(create_web_authn_registration_verification200_response_registration_options_user_dict)

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