You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ID of the passkey which will be updated. Eg: "passkey-id"
name
str
The new name which the passkey will be updated to. Eg: "my-new-passkey-name"
Example
frombetter_auth.models.passkey_update_passkey_post_requestimportPasskeyUpdatePasskeyPostRequest# TODO update the JSON string belowjson="{}"# create an instance of PasskeyUpdatePasskeyPostRequest from a JSON stringpasskey_update_passkey_post_request_instance=PasskeyUpdatePasskeyPostRequest.from_json(json)
# print the JSON string representation of the objectprint(PasskeyUpdatePasskeyPostRequest.to_json())
# convert the object into a dictpasskey_update_passkey_post_request_dict=passkey_update_passkey_post_request_instance.to_dict()
# create an instance of PasskeyUpdatePasskeyPostRequest from a dictpasskey_update_passkey_post_request_from_dict=PasskeyUpdatePasskeyPostRequest.from_dict(passkey_update_passkey_post_request_dict)