class Google::Apis::AndroidmanagementV1::Application
Information about an app.
Attributes
Application
tracks visible to the enterprise. Corresponds to the JSON property `appTracks` @return [Array<Google::Apis::AndroidmanagementV1::AppTrackInfo>]
The set of managed properties available to be pre-configured for the app. Corresponds to the JSON property `managedProperties` @return [Array<Google::Apis::AndroidmanagementV1::ManagedProperty>]
The name of the app in the form enterprises/`enterpriseId`/applications/` package_name`. Corresponds to the JSON property `name` @return [String]
The permissions required by the app. Corresponds to the JSON property `permissions` @return [Array<Google::Apis::AndroidmanagementV1::ApplicationPermission>]
The title of the app. Localized. Corresponds to the JSON property `title` @return [String]
Public Class Methods
# File lib/google/apis/androidmanagement_v1/classes.rb, line 191 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/androidmanagement_v1/classes.rb, line 196 def update!(**args) @app_tracks = args[:app_tracks] if args.key?(:app_tracks) @managed_properties = args[:managed_properties] if args.key?(:managed_properties) @name = args[:name] if args.key?(:name) @permissions = args[:permissions] if args.key?(:permissions) @title = args[:title] if args.key?(:title) end