squareup/models/enums/catalog_category_type.rs
1//! Model for CatalogCategoryType enum
2
3use serde::{Deserialize, Serialize};
4
5/// Indicates the type of catalog category.
6#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
7#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
8pub enum CatalogCategoryType {
9 /// The regular category.
10 RegularCategory,
11 /// The menu category.
12 MenuCategory,
13 /// Kitchen categories are used by KDS (Kitchen Display System) to route items to specific clients
14 KitchenCategory,
15}