Struct google_androidpublisher2::ExternallyHostedApk [] [src]

pub struct ExternallyHostedApk {
    pub icon_base64: Option<String>,
    pub certificate_base64s: Option<Vec<String>>,
    pub externally_hosted_url: Option<String>,
    pub maximum_sdk: Option<i32>,
    pub file_sha256_base64: Option<String>,
    pub uses_permissions: Option<Vec<ExternallyHostedApkUsesPermission>>,
    pub file_sha1_base64: Option<String>,
    pub uses_features: Option<Vec<String>>,
    pub native_codes: Option<Vec<String>>,
    pub file_size: Option<String>,
    pub version_name: Option<String>,
    pub version_code: Option<i32>,
    pub minimum_sdk: Option<i32>,
    pub application_label: Option<String>,
    pub package_name: Option<String>,
}

Defines an APK available for this application that is hosted externally and not uploaded to Google Play. This function is only available to enterprises who are using Google Play for Work, and whos application is restricted to the enterprise private channel

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

Fields

The icon image from the APK, as a base64 encoded byte array.

A certificate (or array of certificates if a certificate-chain is used) used to signed this APK, represented as a base64 encoded byte array.

The URL at which the APK is hosted. This must be an https URL.

The maximum SDK supported by this APK (optional).

The SHA256 checksum of this APK, represented as a base64 encoded byte array.

The permissions requested by this APK.

The SHA1 checksum of this APK, represented as a base64 encoded byte array.

The features required by this APK (optional).

The native code environments supported by this APK (optional).

The file size in bytes of this APK.

The version name of this APK.

The version code of this APK.

The minimum SDK targeted by this APK.

The application label.

The package name.

Trait Implementations

impl Default for ExternallyHostedApk
[src]

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

impl Clone for ExternallyHostedApk
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ExternallyHostedApk
[src]

Formats the value using the given formatter.

impl Part for ExternallyHostedApk
[src]