Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.57 KB

ApiInteractionBindMfaPostRequest.md

File metadata and controls

35 lines (26 loc) · 1.57 KB

ApiInteractionBindMfaPostRequest

Properties

Name Type Description Notes
type str
code str
id str
raw_id str
response VerifyWebAuthnRegistrationVerificationRequestPayloadResponse
authenticator_attachment str [optional]
client_extension_results VerifyWebAuthnRegistrationVerificationRequestPayloadClientExtensionResults

Example

from py_logto.models.api_interaction_bind_mfa_post_request import ApiInteractionBindMfaPostRequest

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

# convert the object into a dict
api_interaction_bind_mfa_post_request_dict = api_interaction_bind_mfa_post_request_instance.to_dict()
# create an instance of ApiInteractionBindMfaPostRequest from a dict
api_interaction_bind_mfa_post_request_from_dict = ApiInteractionBindMfaPostRequest.from_dict(api_interaction_bind_mfa_post_request_dict)

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