Class: Google::Apis::DfareportingV2_5::AccountPermissionGroup

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

AccountPermissionGroups contains a mapping of permission group IDs to names. A permission group is a grouping of account 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) ⇒ AccountPermissionGroup

Returns a new instance of AccountPermissionGroup.



347
348
349
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 347

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

Instance Attribute Details

#idString

ID of this account permission group. Corresponds to the JSON property id

Returns:

  • (String)


334
335
336
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 334

def id
  @id
end

#kindString

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

Returns:

  • (String)


340
341
342
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 340

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


345
346
347
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 345

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



352
353
354
355
356
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 352

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