[][src]Struct astrolab_smart_coffee_types::digishop::menu::update_menu::UpdateMenuBody

pub struct UpdateMenuBody {
    pub id: String,
    pub number_of_authorized_menus: i32,
    pub number_of_published_menus: i32,
    pub company: Option<String>,
    pub identifier: Option<String>,
    pub names: Option<Vec<UpdateMenuNameBody>>,
    pub descriptions: Option<Vec<UpdateMenuDescriptionBody>>,
    pub languages: Option<Vec<MenuLanguageBody>>,
    pub currency: Option<String>,
    pub is_published: Option<bool>,
}

Fields

id: Stringnumber_of_authorized_menus: i32number_of_published_menus: i32company: Option<String>identifier: Option<String>names: Option<Vec<UpdateMenuNameBody>>descriptions: Option<Vec<UpdateMenuDescriptionBody>>languages: Option<Vec<MenuLanguageBody>>currency: Option<String>is_published: Option<bool>

Trait Implementations

impl Clone for UpdateMenuBody[src]

impl Debug for UpdateMenuBody[src]

impl<'de> Deserialize<'de> for UpdateMenuBody[src]

impl Serialize for UpdateMenuBody[src]

impl Validate for UpdateMenuBody[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,