class Google::Apis::AdminDirectoryV1::MobileDevice::Application
Attributes
display_name[RW]
Display name of application Corresponds to the JSON property `displayName` @return [String]
package_name[RW]
Package name of application Corresponds to the JSON property `packageName` @return [String]
permission[RW]
List of Permissions for application Corresponds to the JSON property `permission` @return [Array<String>]
version_code[RW]
Version code of application Corresponds to the JSON property `versionCode` @return [Fixnum]
version_name[RW]
Version name of application Corresponds to the JSON property `versionName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/admin_directory_v1/classes.rb, line 1359 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/admin_directory_v1/classes.rb, line 1364 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @package_name = args[:package_name] if args.key?(:package_name) @permission = args[:permission] if args.key?(:permission) @version_code = args[:version_code] if args.key?(:version_code) @version_name = args[:version_name] if args.key?(:version_name) end