Struct google_androidenterprise1::api::ManagedProperty[][src]

pub struct ManagedProperty {
    pub key: Option<String>,
    pub value_bool: Option<bool>,
    pub value_bundle: Option<ManagedPropertyBundle>,
    pub value_bundle_array: Option<Vec<ManagedPropertyBundle>>,
    pub value_integer: Option<i32>,
    pub value_string: Option<String>,
    pub value_string_array: Option<Vec<String>>,
}

A managed property of a managed configuration. The property must match one of the properties in the app restrictions schema of the product. Exactly one of the value fields must be populated, and it must match the property’s type in the app restrictions schema.

This type is not used in any activity, and only used as part of another schema.

Fields

key: Option<String>

The unique key that identifies the property.

value_bool: Option<bool>

The boolean value - this will only be present if type of the property is bool.

value_bundle: Option<ManagedPropertyBundle>

The bundle of managed properties - this will only be present if type of the property is bundle.

value_bundle_array: Option<Vec<ManagedPropertyBundle>>

The list of bundles of properties - this will only be present if type of the property is bundle_array.

value_integer: Option<i32>

The integer value - this will only be present if type of the property is integer.

value_string: Option<String>

The string value - this will only be present if type of the property is string, choice or hidden.

value_string_array: Option<Vec<String>>

The list of string values - this will only be present if type of the property is multiselect.

Trait Implementations

impl Clone for ManagedProperty[src]

impl Debug for ManagedProperty[src]

impl Default for ManagedProperty[src]

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

impl Part for ManagedProperty[src]

impl Serialize for ManagedProperty[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, 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.