pub struct Application {Show 22 fields
pub app_pricing: Option<String>,
pub app_tracks: Option<Vec<AppTrackInfo>>,
pub app_versions: Option<Vec<AppVersion>>,
pub author: Option<String>,
pub available_countries: Option<Vec<String>>,
pub category: Option<String>,
pub content_rating: Option<String>,
pub description: Option<String>,
pub distribution_channel: Option<String>,
pub features: Option<Vec<String>>,
pub full_description: Option<String>,
pub icon_url: Option<String>,
pub managed_properties: Option<Vec<ManagedProperty>>,
pub min_android_sdk_version: Option<i32>,
pub name: Option<String>,
pub permissions: Option<Vec<ApplicationPermission>>,
pub play_store_url: Option<String>,
pub recent_changes: Option<String>,
pub screenshot_urls: Option<Vec<String>>,
pub small_icon_url: Option<String>,
pub title: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
Information about an app.
§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).
- applications get enterprises (response)
Fields§
§app_pricing: Option<String>
Whether this app is free, free with in-app purchases, or paid. If the pricing is unspecified, this means the app is not generally available anymore (even though it might still be available to people who own it).
app_tracks: Option<Vec<AppTrackInfo>>
Application tracks visible to the enterprise.
app_versions: Option<Vec<AppVersion>>
Versions currently available for this app.
The name of the author of the apps (for example, the app developer).
available_countries: Option<Vec<String>>
The countries which this app is available in as per ISO 3166-1 alpha-2.
category: Option<String>
The app category (e.g. RACING, SOCIAL, etc.)
content_rating: Option<String>
The content rating for this app.
description: Option<String>
The localized promotional description, if available.
distribution_channel: Option<String>
How and to whom the package is made available.
features: Option<Vec<String>>
Noteworthy features (if any) of this app.
full_description: Option<String>
Full app description, if available.
icon_url: Option<String>
A link to an image that can be used as an icon for the app. This image is suitable for use up to a pixel size of 512 x 512.
managed_properties: Option<Vec<ManagedProperty>>
The set of managed properties available to be pre-configured for the app.
min_android_sdk_version: Option<i32>
The minimum Android SDK necessary to run the app.
name: Option<String>
The name of the app in the form enterprises/{enterprise}/applications/{package_name}.
permissions: Option<Vec<ApplicationPermission>>
The permissions required by the app.
play_store_url: Option<String>
A link to the (consumer) Google Play details page for the app.
recent_changes: Option<String>
A localised description of the recent changes made to the app.
screenshot_urls: Option<Vec<String>>
A list of screenshot links representing the app.
small_icon_url: Option<String>
A link to a smaller image that can be used as an icon for the app. This image is suitable for use up to a pixel size of 128 x 128.
title: Option<String>
The title of the app. Localized.
update_time: Option<DateTime<Utc>>
Output only. The approximate time (within 7 days) the app was last published.
Trait Implementations§
Source§impl Clone for Application
impl Clone for Application
Source§fn clone(&self) -> Application
fn clone(&self) -> Application
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for Application
impl Debug for Application
Source§impl Default for Application
impl Default for Application
Source§fn default() -> Application
fn default() -> Application
Source§impl<'de> Deserialize<'de> for Application
impl<'de> Deserialize<'de> for Application
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for Application
impl Serialize for Application
impl ResponseResult for Application
Auto Trait Implementations§
impl Freeze for Application
impl RefUnwindSafe for Application
impl Send for Application
impl Sync for Application
impl Unpin for Application
impl UnwindSafe for Application
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more