Class: Google::Apis::DfareportingV3_5::UserRolePermissionGroup

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

Overview

Represents a grouping of related user role permissions.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UserRolePermissionGroup

Returns a new instance of UserRolePermissionGroup.



12511
12512
12513
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 12511

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

Instance Attribute Details

#idFixnum

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

Returns:

  • (Fixnum)


12498
12499
12500
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 12498

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)


12504
12505
12506
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 12504

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


12509
12510
12511
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 12509

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12516
12517
12518
12519
12520
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 12516

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