Class: Google::Apis::AndroidmanagementV1::ApplicationPermission
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::ApplicationPermission
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidmanagement_v1/classes.rb,
lib/google/apis/androidmanagement_v1/representations.rb,
lib/google/apis/androidmanagement_v1/representations.rb
Overview
A permission required by the app.
Instance Attribute Summary collapse
-
#description ⇒ String
A longer description of the permission, providing more detail on what it affects.
-
#name ⇒ String
The name of the permission.
-
#permission_id ⇒ String
An opaque string uniquely identifying the permission.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ApplicationPermission
constructor
A new instance of ApplicationPermission.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ApplicationPermission
Returns a new instance of ApplicationPermission.
526 527 528 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 526 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
A longer description of the permission, providing more detail on what it
affects. Localized.
Corresponds to the JSON property description
514 515 516 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 514 def description @description end |
#name ⇒ String
The name of the permission. Localized.
Corresponds to the JSON property name
519 520 521 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 519 def name @name end |
#permission_id ⇒ String
An opaque string uniquely identifying the permission. Not localized.
Corresponds to the JSON property permissionId
524 525 526 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 524 def @permission_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
531 532 533 534 535 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 531 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 |