mangadex_api_schema_rust/v5/
user_report.rsuse mangadex_api_types::{MangaDexDateTime, ReportStatus};
use serde::Deserialize;
#[derive(Clone, Debug, Deserialize)]
#[cfg_attr(feature = "serialize", derive(serde::Serialize))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "non_exhaustive", non_exhaustive)]
#[cfg_attr(feature = "specta", derive(specta::Type))]
pub struct UserReportAttributes {
pub details: String,
pub object_id: String,
pub status: ReportStatus,
#[cfg_attr(feature = "specta", specta(type = String))]
#[cfg_attr(
feature = "serialize",
serde(serialize_with = "crate::v5::mangadex_datetime_serialize")
)]
pub created_at: MangaDexDateTime,
}