Class: Google::Apis::DfareportingV2_6::UserRolePermissionGroup

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

Overview

Represents a grouping of related user role permissions.

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

Returns a new instance of UserRolePermissionGroup.



11488
11489
11490
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 11488

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

Instance Attribute Details

#idString

ID of this user role permission. Corresponds to the JSON property id

Returns:

  • (String)


11475
11476
11477
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 11475

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#userRolePermissionGroup". Corresponds to the JSON property kind

Returns:

  • (String)


11481
11482
11483
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 11481

def kind
  @kind
end

#nameString

Name of this user role permission group. Corresponds to the JSON property name

Returns:

  • (String)


11486
11487
11488
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 11486

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11493
11494
11495
11496
11497
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 11493

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