Struct google_androidmanagement1::api::Enterprise[][src]

pub struct Enterprise {
    pub app_auto_approval_enabled: Option<bool>,
    pub contact_info: Option<ContactInfo>,
    pub enabled_notification_types: Option<Vec<String>>,
    pub enterprise_display_name: Option<String>,
    pub logo: Option<ExternalData>,
    pub name: Option<String>,
    pub primary_color: Option<i32>,
    pub pubsub_topic: Option<String>,
    pub signin_details: Option<Vec<SigninDetail>>,
    pub terms_and_conditions: Option<Vec<TermsAndConditions>>,
}

The configuration applied to an enterprise.

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

app_auto_approval_enabled: Option<bool>

Deprecated and unused.

contact_info: Option<ContactInfo>

This feature is not generally available yet. The enterprise contact info of an EMM owned enterprise

enabled_notification_types: Option<Vec<String>>

The types of Google Pub/Sub notifications enabled for the enterprise.

enterprise_display_name: Option<String>

The name of the enterprise displayed to users.

An image displayed as a logo during device provisioning. Supported types are: image/bmp, image/gif, image/x-ico, image/jpeg, image/png, image/webp, image/vnd.wap.wbmp, image/x-adobe-dng.

name: Option<String>

The name of the enterprise which is generated by the server during creation, in the form enterprises/{enterpriseId}.

primary_color: Option<i32>

A color in RGB format that indicates the predominant color to display in the device management app UI. The color components are stored as follows: (red << 16) | (green << 8) | blue, where the value of each component is between 0 and 255, inclusive.

pubsub_topic: Option<String>

The topic that Cloud Pub/Sub notifications are published to, in the form projects/{project}/topics/{topic}. This field is only required if Pub/Sub notifications are enabled.

signin_details: Option<Vec<SigninDetail>>

Sign-in details of the enterprise.

terms_and_conditions: Option<Vec<TermsAndConditions>>

Terms and conditions that must be accepted when provisioning a device for this enterprise. A page of terms is generated for each value in this list.

Trait Implementations

impl Clone for Enterprise[src]

impl Debug for Enterprise[src]

impl Default for Enterprise[src]

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

impl RequestValue for Enterprise[src]

impl Resource for Enterprise[src]

impl ResponseResult for Enterprise[src]

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