Class: Google::Apis::DfareportingV5::UserRolePermissionGroup

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



13806
13807
13808
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13806

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

Instance Attribute Details

#idFixnum

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

Returns:

  • (Fixnum)


13793
13794
13795
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13793

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)


13799
13800
13801
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13799

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


13804
13805
13806
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13804

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13811
13812
13813
13814
13815
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13811

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