class Google::Apis::AnalyticsV3::EntityUserLink::Permissions

Permissions the user has for this entity.

Attributes

effective[RW]

Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read- only. Corresponds to the JSON property `effective` @return [Array<String>]

local[RW]

Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable. Corresponds to the JSON property `local` @return [Array<String>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analytics_v3/classes.rb, line 1481
def update!(**args)
  @effective = args[:effective] if args.key?(:effective)
  @local = args[:local] if args.key?(:local)
end