Struct google_androidenterprise1::api::AdministratorWebTokenSpec[][src]

pub struct AdministratorWebTokenSpec {
    pub managed_configurations: Option<AdministratorWebTokenSpecManagedConfigurations>,
    pub parent: Option<String>,
    pub permission: Option<Vec<String>>,
    pub play_search: Option<AdministratorWebTokenSpecPlaySearch>,
    pub private_apps: Option<AdministratorWebTokenSpecPrivateApps>,
    pub store_builder: Option<AdministratorWebTokenSpecStoreBuilder>,
    pub web_apps: Option<AdministratorWebTokenSpecWebApps>,
}

Specification for a token used to generate iframes. The token specifies what data the admin is allowed to modify and the URI the iframe is allowed to communiate with.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

managed_configurations: Option<AdministratorWebTokenSpecManagedConfigurations>

Options for displaying the Managed Configuration page.

parent: Option<String>

The URI of the parent frame hosting the iframe. To prevent XSS, the iframe may not be hosted at other URIs. This URI must be https. Use whitespaces to separate multiple parent URIs.

permission: Option<Vec<String>>

Deprecated. Use PlaySearch.approveApps.

play_search: Option<AdministratorWebTokenSpecPlaySearch>

Options for displaying the managed Play Search apps page.

private_apps: Option<AdministratorWebTokenSpecPrivateApps>

Options for displaying the Private Apps page.

store_builder: Option<AdministratorWebTokenSpecStoreBuilder>

Options for displaying the Organize apps page.

web_apps: Option<AdministratorWebTokenSpecWebApps>

Options for displaying the Web Apps page.

Trait Implementations

impl Clone for AdministratorWebTokenSpec[src]

impl Debug for AdministratorWebTokenSpec[src]

impl Default for AdministratorWebTokenSpec[src]

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

impl RequestValue for AdministratorWebTokenSpec[src]

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