1 2 3 4 5 6 7 8 9 10 11 12
use serde::Deserialize; use crate::Int32; #[derive(Deserialize, Debug)] pub struct Type { pub type_id: Int32, pub group_id: Int32, pub name: String, pub description: String, pub published: bool, }