Struct google_androidmanagement1::Enterprise[][src]

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

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

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.

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

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

The name of the enterprise displayed to users.

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.

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.

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.

Deprecated and unused.

Trait Implementations

impl Default for Enterprise
[src]

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

impl Clone for Enterprise
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Enterprise
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Enterprise
[src]

impl Resource for Enterprise
[src]

impl ResponseResult for Enterprise
[src]

Auto Trait Implementations

impl Send for Enterprise

impl Sync for Enterprise