Class: Google::Apis::DfareportingV2_5::UserRolePermissionGroup

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v2_5/classes.rb,
generated/google/apis/dfareporting_v2_5/representations.rb,
generated/google/apis/dfareporting_v2_5/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.



11128
11129
11130
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 11128

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

Instance Attribute Details

#idString

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

Returns:

  • (String)


11115
11116
11117
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 11115

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)


11121
11122
11123
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 11121

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


11126
11127
11128
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 11126

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11133
11134
11135
11136
11137
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 11133

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