Class: Google::Apis::DfareportingV3_4::UserRolePermission

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

Overview

Contains properties of a user role permission.

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

Returns a new instance of UserRolePermission.



12444
12445
12446
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12444

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

Instance Attribute Details

#availabilityString

Levels of availability for a user role permission. Corresponds to the JSON property availability

Returns:

  • (String)


12421
12422
12423
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12421

def availability
  @availability
end

#idFixnum

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

Returns:

  • (Fixnum)


12426
12427
12428
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12426

def id
  @id
end

#kindString

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

Returns:

  • (String)


12432
12433
12434
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12432

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


12437
12438
12439
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12437

def name
  @name
end

#permission_group_idFixnum

ID of the permission group that this user role permission belongs to. Corresponds to the JSON property permissionGroupId

Returns:

  • (Fixnum)


12442
12443
12444
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12442

def permission_group_id
  @permission_group_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12449
12450
12451
12452
12453
12454
12455
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12449

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