about summary refs log tree commit diff stats
path: root/crates/rocie-client/src/models/item.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/rocie-client/src/models/item.rs')
-rw-r--r--crates/rocie-client/src/models/item.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/crates/rocie-client/src/models/item.rs b/crates/rocie-client/src/models/item.rs
index d3460bc..ef6891f 100644
--- a/crates/rocie-client/src/models/item.rs
+++ b/crates/rocie-client/src/models/item.rs
@@ -28,24 +28,4 @@ impl Default for Item {
         Self::ItemOneOf(Default::default())
     }
 }
-/// 
-#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
-pub enum Type {
-    #[serde(rename = "text")]
-    Text,
-    #[serde(rename = "ingredient")]
-    Ingredient,
-    #[serde(rename = "cookware")]
-    Cookware,
-    #[serde(rename = "timer")]
-    Timer,
-    #[serde(rename = "inlineQuantity")]
-    InlineQuantity,
-}
-
-impl Default for Type {
-    fn default() -> Type {
-        Self::Text
-    }
-}