Class: Google::Apis::AndroidenterpriseV1::ProductPermission

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidenterprise_v1/classes.rb,
generated/google/apis/androidenterprise_v1/representations.rb,
generated/google/apis/androidenterprise_v1/representations.rb

Overview

A product permissions resource represents the set of permissions required by a specific app and whether or not they have been accepted by an enterprise admin. The API can be used to read the set of permissions, and also to update the set to indicate that permissions have been accepted.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ProductPermission

Returns a new instance of ProductPermission



2131
2132
2133
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2131

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#permission_idString

An opaque string uniquely identifying the permission. Corresponds to the JSON property permissionId

Returns:

  • (String)


2124
2125
2126
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2124

def permission_id
  @permission_id
end

#stateString

Whether the permission has been accepted or not. Corresponds to the JSON property state

Returns:

  • (String)


2129
2130
2131
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2129

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2136
2137
2138
2139
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2136

def update!(**args)
  @permission_id = args[:permission_id] if args.key?(:permission_id)
  @state = args[:state] if args.key?(:state)
end