From 530a2cefad8d76d362c985b4d25e497370011e1a Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Tue, 27 Feb 2024 13:29:07 +0100 Subject: [PATCH] Add enterprise_attestation to make_credential::Request --- src/ctap2/make_credential.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ctap2/make_credential.rs b/src/ctap2/make_credential.rs index 595404d..930d908 100644 --- a/src/ctap2/make_credential.rs +++ b/src/ctap2/make_credential.rs @@ -88,6 +88,8 @@ pub struct Request<'a> { pub pin_auth: Option<&'a serde_bytes::Bytes>, #[serde(skip_serializing_if = "Option::is_none")] pub pin_protocol: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub enterprise_attestation: Option, } // It would be logical to call this Reponse :)