astrolab-smart-coffee-types 0.9.999901

Types lib
Documentation
use actix_web::{HttpResponse, ResponseError};
use chrono::prelude::*;
use derive_more::Display;
use serde::{Deserialize, Serialize};
use validator::Validate;

#[derive(Serialize, Deserialize, Debug, Clone,Validate)]
pub struct CreateMenuNavigationBody {
    pub company: String,
    pub customer: Option<String>,
    pub device: Option<String>,
    pub menu: String,
    pub kind: String,
    pub navigation_date: Option<DateTime<Utc>>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CreateMenuNavigationResult {
    pub success: bool,
}

#[derive(Debug, Display)]
pub enum CreateMenuNavigationError {
    Default(String),
}

impl ResponseError for CreateMenuNavigationError {
    fn error_response(&self) -> HttpResponse {
        match self {
            CreateMenuNavigationError::Default(error) => HttpResponse::BadRequest().body(error),
        }
    }
}