ed_journals/modules/logs/content/log_event_content/use_consumable_event.rs
use serde::{Deserialize, Serialize};
use crate::modules::odyssey::{Item, ItemCategory};
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(rename_all = "PascalCase")]
pub struct UseConsumableEvent {
pub name: Item,
#[serde(rename = "Name_Localised")]
pub name_localized: Option<String>,
#[serde(rename = "Type")]
pub kind: ItemCategory,
}