bitwarden_api_api/models/
response_data.rsuse serde::{Deserialize, Serialize};
use serde_with::serde_as;
use crate::models;
#[serde_as]
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ResponseData {
#[serde_as(as = "Option<serde_with::base64::Base64>")]
#[serde(rename = "attestationObject", skip_serializing_if = "Option::is_none")]
pub attestation_object: Option<Vec<u8>>,
#[serde_as(as = "Option<serde_with::base64::Base64>")]
#[serde(rename = "clientDataJSON", skip_serializing_if = "Option::is_none")]
pub client_data_json: Option<Vec<u8>>,
}
impl ResponseData {
pub fn new() -> ResponseData {
ResponseData {
attestation_object: None,
client_data_json: None,
}
}
}