Struct google_androidenterprise1::AppVersion[][src]

pub struct AppVersion {
    pub track: Option<String>,
    pub version_code: Option<i32>,
    pub version_string: Option<String>,
}

This represents a single version of the app.

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

Fields

The track that this app was published in. For example if track is "alpha", this is an alpha version of the app.

Unique increasing identifier for the app version.

The string used in the Play store by the app developer to identify the version. The string is not necessarily unique or localized (for example, the string could be "1.4").

Trait Implementations

impl Default for AppVersion
[src]

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

impl Clone for AppVersion
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AppVersion
[src]

Formats the value using the given formatter. Read more

impl Part for AppVersion
[src]

Auto Trait Implementations

impl Send for AppVersion

impl Sync for AppVersion