astrolab-smart-coffee-types 0.9.99999903

Types lib
Documentation
use actix_web::{HttpResponse, ResponseError};
use derive_more::Display;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct GetListCompanySitesBody {
    pub company: Option<String>,
    pub menu: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct GetListCompanySitesResult {
    pub list: Vec<CompanySiteAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CompanySiteAggregation {
    pub id: Option<String>,
    pub identifier: Option<String>,
    pub names: Option<Vec<CompanySiteNameAggregation>>,
    pub descriptions: Option<Vec<CompanySiteDescriptionAggregation>>,
    pub address: Option<String>,
    pub phone: Option<CompanySitePhoneAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CompanySiteNameAggregation {
    pub id: Option<String>,
    pub language_code: Option<String>,
    pub value: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CompanySiteDescriptionAggregation {
    pub id: Option<String>,
    pub language_code: Option<String>,
    pub value: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CompanySitePhoneAggregation {
    pub country_code: Option<i32>,
    pub number: Option<String>,
}

#[derive(Debug, Display)]
pub enum GetListCompanySitesError {
    #[display(fmt = "invalid_object_id")]
    InvalidObjectId,
    Default(String),
}

impl ResponseError for GetListCompanySitesError {
    fn error_response(&self) -> HttpResponse {
        match self {
            GetListCompanySitesError::InvalidObjectId => {
                HttpResponse::NotAcceptable().body("invalid_object_id")
            }
            GetListCompanySitesError::Default(error) => HttpResponse::BadRequest().body(error),
        }
    }
}