bitwarden_core/auth/login/response/two_factor/web_authn.rs
1use schemars::JsonSchema;
2use serde::{Deserialize, Serialize};
3
4#[derive(Serialize, Deserialize, Debug, JsonSchema)]
5#[serde(rename_all = "camelCase", deny_unknown_fields)]
6pub struct WebAuthn {}
7
8impl From<crate::auth::api::response::two_factor_provider_data::web_authn::WebAuthn> for WebAuthn {
9 fn from(_: crate::auth::api::response::two_factor_provider_data::web_authn::WebAuthn) -> Self {
10 Self {}
11 }
12}