Struct google_androidenterprise1::AppRestrictionsSchemaRestrictionRestrictionValue [] [src]

pub struct AppRestrictionsSchemaRestrictionRestrictionValue {
    pub value_bool: Option<bool>,
    pub value_integer: Option<i32>,
    pub type_: Option<String>,
    pub value_multiselect: Option<Vec<String>>,
    pub value_string: Option<String>,
}

A typed value for the restriction.

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

Fields

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

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

The type of the value being provided.

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

The string value - this will be present for types string, choice and hidden.

Trait Implementations

impl Debug for AppRestrictionsSchemaRestrictionRestrictionValue
[src]

Formats the value using the given formatter.

impl Clone for AppRestrictionsSchemaRestrictionRestrictionValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for AppRestrictionsSchemaRestrictionRestrictionValue
[src]

Returns the "default value" for a type. Read more

impl Part for AppRestrictionsSchemaRestrictionRestrictionValue
[src]