class Google::Apis::AndroidmanagementV1::ApplicationPermission
A permission required by the app.
Attributes
description[RW]
A longer description of the permission, providing more detail on what it affects. Localized. Corresponds to the JSON property `description` @return [String]
name[RW]
The name of the permission. Localized. Corresponds to the JSON property `name` @return [String]
permission_id[RW]
An opaque string uniquely identifying the permission. Not localized. Corresponds to the JSON property `permissionId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 250 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 255 def update!(**args) @description = args[:description] if args.key?(:description) @name = args[:name] if args.key?(:name) @permission_id = args[:permission_id] if args.key?(:permission_id) end