Class: Google::Apis::DfareportingV3_2::UserRolePermission
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_2::UserRolePermission
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/representations.rb
Overview
Contains properties of a user role permission.
Instance Attribute Summary collapse
-
#availability ⇒ String
Levels of availability for a user role permission.
-
#id ⇒ Fixnum
ID of this user role permission.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#name ⇒ String
Name of this user role permission.
-
#permission_group_id ⇒ Fixnum
ID of the permission group that this user role permission belongs to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserRolePermission
constructor
A new instance of UserRolePermission.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserRolePermission
Returns a new instance of UserRolePermission
12024 12025 12026 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 12024 def initialize(**args) update!(**args) end |
Instance Attribute Details
#availability ⇒ String
Levels of availability for a user role permission.
Corresponds to the JSON property availability
12001 12002 12003 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 12001 def availability @availability end |
#id ⇒ Fixnum
ID of this user role permission.
Corresponds to the JSON property id
12006 12007 12008 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 12006 def id @id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#userRolePermission".
Corresponds to the JSON property kind
12012 12013 12014 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 12012 def kind @kind end |
#name ⇒ String
Name of this user role permission.
Corresponds to the JSON property name
12017 12018 12019 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 12017 def name @name end |
#permission_group_id ⇒ Fixnum
ID of the permission group that this user role permission belongs to.
Corresponds to the JSON property permissionGroupId
12022 12023 12024 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 12022 def @permission_group_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12029 12030 12031 12032 12033 12034 12035 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 12029 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 |