Class: Google::Apis::AnalyticsV3::Webproperty::Permissions

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

Overview

Permissions the user has for this web property.

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) ⇒ Permissions

Returns a new instance of Permissions



5749
5750
5751
# File 'generated/google/apis/analytics_v3/classes.rb', line 5749

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

Instance Attribute Details

#effectiveArray<String>

All the permissions that the user has for this web property. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent account. Corresponds to the JSON property effective

Returns:

  • (Array<String>)


5747
5748
5749
# File 'generated/google/apis/analytics_v3/classes.rb', line 5747

def effective
  @effective
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5754
5755
5756
# File 'generated/google/apis/analytics_v3/classes.rb', line 5754

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