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