fusionauth_rust_client/models/
web_authn_authenticator_authentication_response.rsuse crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebAuthnAuthenticatorAuthenticationResponse {
#[serde(rename = "authenticatorData", skip_serializing_if = "Option::is_none")]
pub authenticator_data: Option<String>,
#[serde(rename = "clientDataJSON", skip_serializing_if = "Option::is_none")]
pub client_data_json: Option<String>,
#[serde(rename = "signature", skip_serializing_if = "Option::is_none")]
pub signature: Option<String>,
#[serde(rename = "userHandle", skip_serializing_if = "Option::is_none")]
pub user_handle: Option<String>,
}
impl WebAuthnAuthenticatorAuthenticationResponse {
pub fn new() -> WebAuthnAuthenticatorAuthenticationResponse {
WebAuthnAuthenticatorAuthenticationResponse {
authenticator_data: None,
client_data_json: None,
signature: None,
user_handle: None,
}
}
}