Struct google_androidenterprise1::Product [] [src]

pub struct Product {
    pub small_icon_url: Option<String>,
    pub kind: Option<String>,
    pub distribution_channel: Option<String>,
    pub title: Option<String>,
    pub work_details_url: Option<String>,
    pub app_version: Option<Vec<AppVersion>>,
    pub product_pricing: Option<String>,
    pub icon_url: Option<String>,
    pub author_name: Option<String>,
    pub requires_container_app: Option<bool>,
    pub details_url: Option<String>,
    pub product_id: Option<String>,
}

A Products resource represents an app in the Google Play store that is available to at least some users in the enterprise. (Some apps are restricted to a single enterprise, and no information about them is made available outside that enterprise.)

The information provided for each product (localized name, icon, link to the full Google Play details page) is intended to allow a basic representation of the product within an EMM user interface.

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

A link to a smaller image that can be used as an icon for the product. This image is suitable for use at up to 128px x 128px.

Identifies what kind of resource this is. Value: the fixed string "androidenterprise#product".

How and to whom the package is made available. The value publicGoogleHosted means that the package is available through the Play store and not restricted to a specific enterprise. The value privateGoogleHosted means that the package is a private app (restricted to an enterprise) but hosted by Google. The value privateSelfHosted means that the package is a private app (restricted to an enterprise) and is privately hosted.

The name of the product.

A link to the managed Google Play details page for the product, for use by an Enterprise admin.

App versions currently available for this product. The returned list contains only public versions. Alpha and beta versions are not included.

Whether this product is free, free with in-app purchases, or paid. If the pricing is unknown, this means the product is not generally available anymore (even though it might still be available to people who own it).

A link to an image that can be used as an icon for the product. This image is suitable for use at up to 512px x 512px.

The name of the author of the product (for example, the app developer).

Deprecated.

A link to the (consumer) Google Play details page for the product.

A string of the form app:. For example, app:com.google.android.gm represents the Gmail app.

Trait Implementations

impl Default for Product
[src]

[src]

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

impl Clone for Product
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Product
[src]

[src]

Formats the value using the given formatter.

impl Resource for Product
[src]

impl ResponseResult for Product
[src]