Class: Google::Apis::DfareportingV3_1::UserRolePermission

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



11985
11986
11987
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11985

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)


11962
11963
11964
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11962

def availability
  @availability
end

#idFixnum

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

Returns:

  • (Fixnum)


11967
11968
11969
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11967

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)


11973
11974
11975
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11973

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


11978
11979
11980
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11978

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)


11983
11984
11985
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11983

def permission_group_id
  @permission_group_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11990
11991
11992
11993
11994
11995
11996
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11990

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