[][src]Struct astrolab_smart_coffee_types::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 titles: Option<Vec<UpdateMenuTitleBody>>,
    pub names: Option<Vec<UpdateMenuNameBody>>,
    pub descriptions: Option<Vec<UpdateMenuDescriptionBody>>,
    pub sites: Option<Vec<MenuSiteBody>>,
    pub languages: Option<Vec<MenuLanguageBody>>,
    pub currency: Option<String>,
    pub delivery_settings: Option<MenuDeliverySettingsBody>,
    pub logo: Option<String>,
    pub copied_logos: Option<Vec<MenuCopiedLogoBody>>,
    pub screenshots: Option<Vec<MenuScreenshotBody>>,
    pub characteristics: Option<Vec<MenuCharacteristicBody>>,
    pub is_published: Option<bool>,
}

Fields

id: Stringnumber_of_authorized_menus: i32number_of_published_menus: i32company: Option<String>identifier: Option<String>titles: Option<Vec<UpdateMenuTitleBody>>names: Option<Vec<UpdateMenuNameBody>>descriptions: Option<Vec<UpdateMenuDescriptionBody>>sites: Option<Vec<MenuSiteBody>>languages: Option<Vec<MenuLanguageBody>>currency: Option<String>delivery_settings: Option<MenuDeliverySettingsBody>copied_logos: Option<Vec<MenuCopiedLogoBody>>screenshots: Option<Vec<MenuScreenshotBody>>characteristics: Option<Vec<MenuCharacteristicBody>>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>,