class Google::Apis::AndroidmanagementV1::Application

Information about an app.

Attributes

app_tracks[RW]

Application tracks visible to the enterprise. Corresponds to the JSON property `appTracks` @return [Array<Google::Apis::AndroidmanagementV1::AppTrackInfo>]

managed_properties[RW]

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>]

name[RW]

The name of the app in the form enterprises/`enterpriseId`/applications/` package_name`. Corresponds to the JSON property `name` @return [String]

permissions[RW]

The permissions required by the app. Corresponds to the JSON property `permissions` @return [Array<Google::Apis::AndroidmanagementV1::ApplicationPermission>]

title[RW]

The title of the app. Localized. Corresponds to the JSON property `title` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 191
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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